diff options
Diffstat (limited to 'Northstar.Custom/mod.json')
-rw-r--r-- | Northstar.Custom/mod.json | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index d1ebeec3..8a09c756 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -249,6 +249,27 @@ "RunOn": "CLIENT && MP" }, + // hide and seek + { + "Path": "gamemodes/sh_gamemode_hs.gnut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "Sh_GamemodeHideAndSeek_Init" + }, + + "ServerCallback": { + "Before": "Sh_GamemodeHideAndSeek_Init" + } + }, + { + "Path": "gamemodes/_gamemode_hs.gnut", + "RunOn": "SERVER && MP" + }, + { + "Path": "gamemodes/cl_gamemode_hs.gnut", + "RunOn": "CLIENT && MP" + }, + // ctf comp { "Path": "gamemodes/sh_gamemode_ctf_comp.gnut", @@ -267,10 +288,12 @@ "RunOn": "( CLIENT || SERVER ) && MP", "ClientCallback": { "Before": "FirstPersonEmbark_Init", + "After": "FirstPersonEmbark_InitPlaylistVars" }, "ServerCallback": { - "Before": "FirstPersonEmbark_Init" + "Before": "FirstPersonEmbark_Init", + "After": "FirstPersonEmbark_InitPlaylistVars" } }, @@ -285,7 +308,7 @@ { "Path": "_custom_air_accel.gnut", - "RunOn": "MP", + "RunOn": "CLIENT || SERVER", "ClientCallback": { "After": "CustomAirAccelVars_Init" }, @@ -306,6 +329,32 @@ "After": "Promode_Init" } }, + + { + "Path": "_bleedout_damage.gnut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "BleedoutDamage_PreInit", + "After": "BleedoutDamage_Init" + }, + + "ServerCallback": { + "Before": "BleedoutDamage_PreInit", + "After": "BleedoutDamage_Init" + } + }, + + { + "Path": "_custom_oob_timer.gnut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "After": "CustomOOBTimer_Init" + }, + + "ServerCallback": { + "After": "CustomOOBTimer_Init" + } + } ], "Localisation": [ |