aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Client/mod.json
blob: 00b779a4ee1cf614bd4e17b89a0426f496b88d10 (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
{
	"Name": "Northstar.Client",
	"Description": "Various ui and client changes to fix bugs and add better support for mods",
	"Version": "1.13.0",
	"LoadPriority": 0,
	"InitScript": "cl_northstar_client_init.nut",
	"ConVars": [
		{
			"Name": "filter_hide_empty",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_hide_full",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_hide_protected",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_map",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_gamemode",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_mods",
			"DefaultValue": "0"
		},
		{
			"Name": "filter_map_hide_locked",
			"DefaultValue": "0"
		},
		{
			"Name": "modlist_show_convars",
			"DefaultValue": "0",
			"Flags": 16777216
		},
		{
			"Name": "modlist_reverse",
			"DefaultValue": "0",
			"Flags": 16777216
		}
	],
	"Scripts": [
		{
			"Path": "_custom_codecallbacks_client.gnut",
			"RunOn": "CLIENT"
		},
		{
			"Path": "client/cl_chat.gnut",
			"RunOn": "CLIENT"
		},
		{
			"Path": "ui/menu_ns_modmenu.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "AddNorthstarModMenu",
				"After": "AddNorthstarModMenu_MainMenuFooter"
			}
		},
		{
			"Path": "ui/menu_ns_setversionlabel.nut",
			"RunOn": "UI",
			"UICallback": {
				"After": "NS_SetVersionLabel"
			}
		},
		{
			"Path": "presence/ui_presence.nut",
			"RunOn": "UI",
			"UICallback": {
				"After": "NSUpdateGameStateUIStart"
			}
		},
		{
			"Path": "presence/cl_presence.nut",
			"RunOn": "CLIENT",
			"ClientCallback": {
				"After": "NSUpdateGameStateClientStart"
			}
		},
		{
			"Path": "ui/menu_ns_serverbrowser.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "AddNorthstarServerBrowserMenu"
			}
		},
		{
			"Path": "ui/menu_ns_connect_password.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "AddNorthstarConnectWithPasswordMenu"
			}
		},
		{
			"Path": "ui/menu_ns_custom_match_settings_categories.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "AddNorthstarCustomMatchSettingsCategoryMenu"
			}
		},
		{
			"Path": "ui/menu_ns_custom_match_settings.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "AddNorthstarCustomMatchSettingsMenu"
			}
		},
		{
			"Path": "ui/controller_prompts.nut",
			"RunOn": "UI"
		},
		{
			"Path": "ui/ui_mouse_capture.nut",
			"RunOn": "UI"
		}
	],
	"Localisation": [
		"resource/northstar_client_localisation_%language%.txt"
	]
}