diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-14 21:01:40 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-14 21:01:40 +0100 |
commit | 9a2778eabc7ba968968e41dda9f03525d6c5383d (patch) | |
tree | 6d1c5dc64754d542d68a7f47742a701a4eec9308 /Northstar.Custom/mod.json | |
parent | c0a0c7e502f2bc99185d79a485b965f63de7a203 (diff) | |
download | NorthstarMods-9a2778eabc7ba968968e41dda9f03525d6c5383d.tar.gz NorthstarMods-9a2778eabc7ba968968e41dda9f03525d6c5383d.zip |
oh fuck i forgot to commit for a while
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": [ |