aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut32
1 files changed, 30 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut
index a2e95e082..470fa6a41 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_changemap.nut
@@ -6,9 +6,11 @@ void function CodeCallback_MatchIsOver()
SetUIVar( level, "putPlayerInMatchmakingAfterDelay", true )
else
SetUIVar( level, "putPlayerInMatchmakingAfterDelay", false )
-
+
+ #if MP
AddCreditsForXPGained()
PopulatePostgameData()
+ #endif
if ( ShouldReturnToLobby() )
{
@@ -19,6 +21,30 @@ void function CodeCallback_MatchIsOver()
else
GameRules_ChangeMap( "mp_lobby", GAMETYPE )
}
+ else
+ {
+ // iterate over all gamemodes/maps in current playlist, choose map/mode combination that's directly after our current one
+ // if we reach the end, go back to the first map/mode
+ bool changeOnNextIteration = false
+
+ for ( int i = 0; i < GetCurrentPlaylistGamemodesCount(); i++ )
+ {
+ if ( GetCurrentPlaylistGamemodeByIndex( i ) == GAMETYPE )
+ {
+ for ( int j = 0; j < GetCurrentPlaylistGamemodeByIndexMapsCount( i ); j++ )
+ {
+ if ( changeOnNextIteration )
+ GameRules_ChangeMap( GetCurrentPlaylistGamemodeByIndexMapByIndex( i, j ), GetCurrentPlaylistGamemodeByIndex( i ) )
+
+ if ( GetCurrentPlaylistGamemodeByIndexMapByIndex( i, j ) == GetMapName() )
+ changeOnNextIteration = true // change to next map/mode we iterate over
+ }
+ }
+ }
+
+ // go back to first map/mode
+ GameRules_ChangeMap( GetCurrentPlaylistGamemodeByIndexMapByIndex( 0, 0 ), GetCurrentPlaylistGamemodeByIndex( 0 ) )
+ }
#if DEV
if ( !IsMatchmakingServer() )
@@ -26,6 +52,7 @@ void function CodeCallback_MatchIsOver()
#endif // #if DEV
}
+#if MP
void function PopulatePostgameData()
{
// something's busted here because this isn't showing automatically on match end, ag
@@ -94,4 +121,5 @@ void function PopulatePostgameData()
player.SetPersistentVar( "isPostGameScoreboardValid", true )
}
-} \ No newline at end of file
+}
+#endif \ No newline at end of file