aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut37
1 files changed, 0 insertions, 37 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut b/Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut
deleted file mode 100644
index fd877f8cf..000000000
--- a/Northstar.CustomServers/scripts/vscripts/lobby/_lobby.gnut
+++ /dev/null
@@ -1,37 +0,0 @@
-untyped
-global function Lobby_Init
-global function Lobby_OnClientConnectionStarted
-global function Lobby_OnClientConnectionCompleted
-
-void function Lobby_Init()
-{
- // need to prevent a crash
- Music_Init()
-
- if ( IsPrivateMatch() || GetCurrentPlaylistName() == "private_match" ) // IsPrivateMatch() doesn't seem to be reliable on local server start
- PrivateLobby_Init()
- else
- {
- // non-private lobby clientcommands
- AddClientCommandCallback( "StartPrivateMatchSearch", ClientCommandCallback_StartPrivateMatchSearch )
- }
-}
-
-void function Lobby_OnClientConnectionStarted( entity player )
-{
-
-}
-
-void function Lobby_OnClientConnectionCompleted( entity player )
-{
- FinishClientScriptInitialization( player )
-}
-
-bool function ClientCommandCallback_StartPrivateMatchSearch( entity player, array<string> args )
-{
- // open lobby in private match mode
- SetCurrentPlaylist( "private_match" ) // required for private match lobby to start properly
- ServerCommand( "changelevel mp_lobby" )
-
- return true
-} \ No newline at end of file