aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Client/mod
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.Client/mod')
-rw-r--r--Northstar.Client/mod/scripts/vscripts/state_client.nut13
-rw-r--r--Northstar.Client/mod/scripts/vscripts/state_ui.nut11
2 files changed, 21 insertions, 3 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/state_client.nut b/Northstar.Client/mod/scripts/vscripts/state_client.nut
index 3a0ed6117..2a380e356 100644
--- a/Northstar.Client/mod/scripts/vscripts/state_client.nut
+++ b/Northstar.Client/mod/scripts/vscripts/state_client.nut
@@ -16,7 +16,9 @@ void function OnPrematchStart()
void function NSUpdateGameStateClientStart()
{
+ #if MP
AddCallback_GameStateEnter( eGameState.Prematch, OnPrematchStart )
+ #endif
thread NSUpdateGameStateLoopClient()
OnPrematchStart()
}
@@ -25,6 +27,14 @@ void function NSUpdateGameStateLoopClient()
{
while ( true )
{
+ if(GetConVarString( "mp_gamemode" ) == "solo")
+ {
+
+ NSUpdateGameStateClient( GetPlayerArray().len(), GetCurrentPlaylistVarInt( "max_players", 65535 ), 1, 1, 1, GetServerVar( "roundBased" ), 1 )
+ wait 1.0
+ }
+ else
+ {
foreach ( player in GetPlayerArray() )
{
if ( GameRules_GetTeamScore( player.GetTeam() ) >= highestScore )
@@ -45,4 +55,5 @@ void function NSUpdateGameStateLoopClient()
OnPrematchStart()
wait 1.0
}
-} \ No newline at end of file
+ }
+}
diff --git a/Northstar.Client/mod/scripts/vscripts/state_ui.nut b/Northstar.Client/mod/scripts/vscripts/state_ui.nut
index 907e38faf..51e4856f3 100644
--- a/Northstar.Client/mod/scripts/vscripts/state_ui.nut
+++ b/Northstar.Client/mod/scripts/vscripts/state_ui.nut
@@ -24,6 +24,13 @@ void function NSUpdateGameStateLoopUI()
continue
}
NSSetLoading( false )
+ if(GetConVarString( "mp_gamemode" ) == "solo")
+ {
+ NSUpdateGameStateUI( "northstar", Localize( GetMapDisplayName( GetActiveLevel()+"_CAMPAIGN_NAME" ) ) , "Campaign", "Campaign", IsFullyConnected(), false )
+
+ }
+ else{
NSUpdateGameStateUI( GetActiveLevel(), Localize( GetMapDisplayName( GetActiveLevel() ) ), GetConVarString( "mp_gamemode" ), Localize( GetPlaylistDisplayName( GetConVarString("mp_gamemode") ) ), IsFullyConnected(), false )
- }
-} \ No newline at end of file
+ }
+}
+}