aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod.json
blob: 172bff117215b6100216b5f902be1097778bd14e (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
{
	"Name": "Northstar.CustomServers",
	"Description": "Attempts to recreate the behaviour of vanilla Titanfall 2 servers, as well as changing some scripts to allow better support for mods",
	"Version": "1.5.0",
	"LoadPriority": 0,
	"ConVars": [
		{
			"Name": "ns_lobby_type",
			"DefaultValue": "0"
		},
		{
			"Name": "ns_is_modded_server",
			"DefaultValue": "1",
			"Flags": 8192
		},
		{
			"Name": "ns_should_return_to_lobby",
			"DefaultValue": "1"
		},
		{
			"Name": "ns_allow_spectators",
			"DefaultValue": "0",
			"Flags": 8192
		},
		{
			"Name": "ns_private_match_last_mode",
			"DefaultValue": "tdm"
		},
		{
			"Name": "ns_private_match_last_map",
			"DefaultValue": "mp_forwardbase_kodai"
		},
		{
			"Name": "ns_private_match_only_host_can_change_settings",
			"DefaultValue": "0"
		},
		{
			"Name": "ns_private_match_only_host_can_start",
			"DefaultValue": "0"
		},
		{
			"Name": "ns_private_match_countdown_length",
			"DefaultValue": "15"
		},
		{
			"Name": "ns_private_match_override_maxplayers",
			"DefaultValue": "1"
		},
		{
			"Name": "ns_should_log_unknown_clientcommands",
			"DefaultValue": "1"
		}
	],
	"Scripts": [
		{
			"Path": "_custom_codecallbacks.gnut",
			"RunOn": "SERVER",
			"ServerCallback": {
				"Before": "NSSetupChathooksServer"
			}
		},
		{
			"Path": "_chat.gnut",
			"RunOn": "SERVER"
		},
		{
			"Path": "_misc_stubs.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "_store.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "_script_movers.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "sh_northstar_utils.gnut",
			"RunOn": "CLIENT || SERVER || UI"
		},
		{
			"Path": "mp/levels/_lf_maps_shared.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "gamemodes/sh_gamemodes_custom.gnut",
			"RunOn": "(CLIENT || SERVER) && MP"
		},
		{
			"Path": "sh_remote_functions_mp_custom.gnut",
			"RunOn": "(CLIENT || SERVER) && MP"
		},
		{
			"Path": "sh_server_to_client_stringcommands.gnut",
			"RunOn": "CLIENT || SERVER",
			"ClientCallback": {
				"After": "ServerToClientStringCommands_Init"
			}
		},
		{
			"Path": "gamemodes/_gamemode_fra.nut",
			"RunOn": "SERVER && MP",
			"ServerCallback": {
				"Before": "GamemodeFRA_AddAdditionalInitCallback"
			}
		},
		{
			"Path": "mp/_classic_mp_dropship_intro.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "mp/_classic_mp_no_intro.gnut",
			"RunOn": "SERVER && MP"
		},
		{
			"Path": "mp/_spectator.gnut",
			"RunOn": "SERVER && MP",
			"ServerCallback": {
				"After": "Spectator_Init"
			}
		},
		{
			"Path": "_loadouts_mp.gnut",
			"RunOn": "SERVER && MP",
			"ServerCallback": {
				"After": "SvLoadoutsMP_Init"
			}
		},
		{
			"Path": "lobby/sh_private_lobby_modes_init.gnut",
			"RunOn": "( SERVER || CLIENT ) && MP"
		},

		{
			"Path": "_respawn_protection.gnut",
			"RunOn": "SERVER && MP",
			"ServerCallback": {
				"Before": "RespawnProtection_Init"
			}
		}
	]
}