diff options
author | x3Karma <juliuslimck@gmail.com> | 2022-01-03 17:35:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 17:35:33 +0800 |
commit | 0fe7ec431c2de4f83c2d6e3663f17f15bf49326d (patch) | |
tree | e4ada04fd099567d695492d490f56a5c8c59148b | |
parent | a6be37171909ffee12adc12f53585cc33b97ec1b (diff) | |
download | NorthstarMods-0fe7ec431c2de4f83c2d6e3663f17f15bf49326d.tar.gz NorthstarMods-0fe7ec431c2de4f83c2d6e3663f17f15bf49326d.zip |
adds OITC and Hidden to mod.json
-rw-r--r-- | Northstar.Custom/mod.json | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index 7b2ad50d..4805e346 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -41,6 +41,48 @@ "RunOn": "( CLIENT || SERVER ) && MP", }, + // one in the chamber + { + "Path": "gamemodes/sh_gamemode_chamber.nut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "Sh_GamemodeChamber_Init" + }, + + "ServerCallback": { + "Before": "Sh_GamemodeChamber_Init" + } + }, + { + "Path": "gamemodes/_gamemode_chamber.nut", + "RunOn": "SERVER && MP" + }, + { + "Path": "gamemodes/cl_gamemode_chamber.nut", + "RunOn": "CLIENT && MP" + }, + + // Hidden + { + "Path": "gamemodes/sh_gamemode_hidden.nut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "Sh_GamemodeHidden_Init" + }, + + "ServerCallback": { + "Before": "Sh_GamemodeHidden_Init" + } + }, + { + "Path": "gamemodes/_gamemode_hidden.nut", + "RunOn": "SERVER && MP" + }, + { + "Path": "gamemodes/cl_gamemode_hidden.nut", + "RunOn": "CLIENT && MP" + }, + // fortwar { "Path": "gamemodes/sh_gamemode_fw_custom.nut", @@ -371,4 +413,4 @@ "Localisation": [ "resource/northstar_custom_%language%.txt" ] -}
\ No newline at end of file +} |