diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-31 23:14:58 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-31 23:14:58 +0100 |
commit | 9a96d0bff56f1969c68bb52a2f33296095bdc67d (patch) | |
tree | 4175928e488632705692e3cccafa1a38dd854615 /Northstar.CustomServers/mod.json | |
parent | 27bd240871b7c0f2f49fef137718b2e3c208e3b4 (diff) | |
download | NorthstarMods-9a96d0bff56f1969c68bb52a2f33296095bdc67d.tar.gz NorthstarMods-9a96d0bff56f1969c68bb52a2f33296095bdc67d.zip |
move to new mod format
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" + } }, { |