From 0fe7ec431c2de4f83c2d6e3663f17f15bf49326d Mon Sep 17 00:00:00 2001 From: x3Karma Date: Mon, 3 Jan 2022 17:35:33 +0800 Subject: adds OITC and Hidden to mod.json --- Northstar.Custom/mod.json | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) (limited to 'Northstar.Custom/mod.json') 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 +} -- cgit v1.2.3 From d6daad7aa0b369b3363132edaa277b88391d474d Mon Sep 17 00:00:00 2001 From: x3Karma Date: Tue, 4 Jan 2022 00:36:30 +0800 Subject: Fix indentations in mod.json --- Northstar.Custom/mod.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Northstar.Custom/mod.json') diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index 797016db..e687264c 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -56,11 +56,10 @@ "Path": "gamemodes/_gamemode_chamber.nut", "RunOn": "SERVER && MP" }, - { + { "Path": "gamemodes/cl_gamemode_chamber.nut", "RunOn": "CLIENT && MP" }, - { "Path": "gamemodes/sh_gamemode_hidden.nut", "RunOn": "( CLIENT || SERVER ) && MP", @@ -76,7 +75,7 @@ "Path": "gamemodes/_gamemode_hidden.nut", "RunOn": "SERVER && MP" }, - { + { "Path": "gamemodes/cl_gamemode_hidden.nut", "RunOn": "CLIENT && MP" }, -- cgit v1.2.3