aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom/mod.json
blob: 8d7c175230bffa2cdf3d43b3d29d0e71ac594ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
disabled{
	"ApiId" : "Northstar.Custom",
	"Name" : "Northstar.Custom",
	"Description" : "Additional content for coop and custom multiplayer servers",
	"Authors" : [
		"BobTheBob"
	],
	"Contacts" : [
		"BobTheBob#1150"
	],
	"Version" : "0.1",
	"CustomScripts": [
		{
			"Path": "northstar_custom_autoprecache.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientCallback": "NorthstarCustomAutoprecache",
			"ServerCallback": "NorthstarCustomAutoprecache",
		},
		{
			"Path": "_northstar_devcommands.gnut",
			"RunOn": "SERVER && MP",
			"ServerCallback": "NorthstarDevCommands_Init"
		},
		
		{
			"Path": "weapons/mp_weapon_peacekraber.nut",
			"RunOn": "( CLIENT || SERVER ) && MP",
		},
		
		{
			"Path": "gamemodes/sh_gamemode_sbox.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeSbox_Init",
			"ServerPreCallback": "Sh_GamemodeSbox_Init"
		},
		{
			"Path": "gamemodes/_gamemode_sbox.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "weapons/mp_weapon_toolgun.nut",
			"RunOn": "( CLIENT || SERVER ) && MP"
		},
		{
			"Path": "weapons/toolgun/sh_toolgun_tools.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientCallback": "ToolgunTools_Init",
			"ServerCallback": "ToolgunTools_Init"
		},
		{
			"Path": "weapons/toolgun/sh_toolgun_tool_throw.nut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientCallback": "ToolgunToolThrowEntity_Init",
			"ServerCallback": "ToolgunToolThrowEntity_Init"
		},
		{
			"Path": "weapons/toolgun/sh_toolgun_tool_explode.nut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientCallback": "ToolgunToolCreateExplosion_Init",
			"ServerCallback": "ToolgunToolCreateExplosion_Init"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_fw_custom.nut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "SHCreateGamemodeFW_Init",
			"ServerPreCallback": "SHCreateGamemodeFW_Init"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_gg.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeGG_Init",
			"ServerPreCallback": "Sh_GamemodeGG_Init"
		},
		{
			"Path": "gamemodes/_gamemode_gg.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_gg.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_tt.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeTT_Init",
			"ServerPreCallback": "Sh_GamemodeTT_Init"
		},
		{
			"Path": "gamemodes/_gamemode_tt.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_tt.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_inf.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeInfection_Init",
			"ServerPreCallback": "Sh_GamemodeInfection_Init"
		},
		{
			"Path": "gamemodes/_gamemode_inf.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_inf.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_arena.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeArena_Init",
			"ServerPreCallback": "Sh_GamemodeArena_Init"
		},
		{
			"Path": "gamemodes/_gamemode_arena.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_arena.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_kr.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeKR_Init",
			"ServerPreCallback": "Sh_GamemodeKR_Init"
		},
		{
			"Path": "gamemodes/_gamemode_kr.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_kr.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_fastball.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "Sh_GamemodeFastball_Init",
			"ServerPreCallback": "Sh_GamemodeFastball_Init"
		},
		{
			"Path": "gamemodes/_gamemode_fastball.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/_gamemode_fastball_intro.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_fastball.gnut",
			"RunOn": "CLIENT && MP"
		},
		
		{
			"Path": "gamemodes/sh_gamemode_ctf_comp.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "ShGamemodeCTFComp_Init",
			"ServerPreCallback": "ShGamemodeCTFComp_Init"
		},
		
		{
			"Path": "titan/sh_first_person_embark.gnut",
			"RunOn": "( CLIENT || SERVER ) && MP",
			"ClientPreCallback": "FirstPersonEmbark_Init",
			"ServerPreCallback": "FirstPersonEmbark_Init"
		},
		{
			"Path": "gamemodes/_riff_instagib.gnut",
			"RunOn": "SERVER && MP",
			"ServerCallback": "RiffInstagib_Init"
		},
	],
	"IncludeAdditionalPreexistingScripts": [
		{
			"Path": "gamemodes/sh_gamemode_fw.nut",
			"RunOn": "( CLIENT || SERVER ) && MP"
		},
		{
			"Path": "gamemodes/cl_gamemode_fw.nut",
			"RunOn": "CLIENT && MP"
		}
	]
}