diff options
Diffstat (limited to 'Northstar.CustomServers/mod.json')
-rw-r--r-- | Northstar.CustomServers/mod.json | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json index 6e4d2d58..547a1b8c 100644 --- a/Northstar.CustomServers/mod.json +++ b/Northstar.CustomServers/mod.json @@ -1,15 +1,19 @@ { - "ApiId" : "Northstar.CustomServers", - "Name" : "Northstar.CustomServers", - "Description" : "Various script patches to fix and reimplement functionality for custom multiplayer servers", - "Authors" : [ - "BobTheBob" - ], - "Contacts" : [ - "BobTheBob#1150" + "Name": "Northstar.CustomServers", + + "ConVars": [ + { + "Name": "ns_lobby_type", + "DefaultValue": "0" + }, + + { + "Name": "ns_should_return_to_lobby", + "DefaultValue": "1" + } ], - "Version" : "0.1", - "CustomScripts": [ + + "Scripts": [ { "Path": "_misc.gnut", "RunOn": "SERVER && MP", @@ -44,12 +48,16 @@ { "Path": "gamemodes/_gamemode_fra.nut", "RunOn": "SERVER && MP", - "ServerPreCallback": "GamemodeFRA_AddAdditionalInitCallback" + "ServerCallback": { + "Before": "GamemodeFRA_AddAdditionalInitCallback" + } }, { "Path": "gamemodes/_featured_mode_settings.gnut", "RunOn": "SERVER && MP", - "ServerCallback": "FeaturedModeSettings_Init" + "ServerCallback": { + "After": "FeaturedModeSettings_Init" + } }, { @@ -64,7 +72,9 @@ { "Path": "_loadouts_mp.gnut", "RunOn": "SERVER && MP", - "ServerCallback": "SvLoadoutsMP_Init" + "ServerCallback": { + "After": "SvLoadoutsMP_Init" + } }, { |