generated from GreenTF/NSModTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.json
84 lines (84 loc) · 2.04 KB
/
mod.json
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
{
"Name": "Parkour",
"Description": "Reach all checkpoints and end the race as fast as you can.",
"LoadPriority": 2,
"Version": "0.2.1",
"RequiredOnClient": true,
"ConVars": [
{
"Name": "parkour_api_endpoint",
"DefaultValue": "https://parkour.remyraes.com"
},
{
"Name": "parkour_api_secret",
"DefaultValue": "my_little_secret"
},
{
"Name": "parkour_use_local_config",
"DefaultValue": "0"
}
],
"Scripts": [
{
"Path": "gamemodes/sh_gamemode_pk.nut",
"RunOn": "SERVER || CLIENT",
"ServerCallback": {
"Before": "PKMode_Init"
},
"ClientCallback": {
"Before": "PKMode_Init"
}
},
{
"Path": "ui/robot_dialog.nut",
"RunOn": "UI"
},
{
"Path": "utils/npc.nut",
"RunOn": "SERVER"
},
{
"Path": "utils/parsing.nut",
"RunOn": "SERVER || CLIENT"
},
{
"Path": "utils/map_configuration.nut",
"RunOn": "SERVER"
},
{
"Path": "gamemodes/cl_gamemode_pk.nut",
"RunOn": "CLIENT"
},
{
"Path": "client/cl_personal_best.nut",
"RunOn": "CLIENT"
},
{
"Path": "utils/perks.nut",
"RunOn": "SERVER"
},
{
"Path": "utils/player_stats.nut",
"RunOn": "SERVER"
},
{
"Path": "utils/leaderboard.nut",
"RunOn": "SERVER"
},
{
"Path": "utils/checkpoint.nut",
"RunOn": "SERVER"
},
{
"Path": "utils/world_leaderboard.nut",
"RunOn": "SERVER"
},
{
"Path": "gamemodes/_gamemode_pk.nut",
"RunOn": "SERVER"
}
],
"Localisation": [
"resource/parkour_%language%.txt"
]
}