generated from GreenTF/NSModTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.json
39 lines (39 loc) · 813 Bytes
/
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
{
"Name": "[4] Controllable Spaceships",
"Description": "type \"ship\" in the console to spawn a spaceship.\nPress [space] when inside of the ship to liftoff or land",
"Version": "0.2.1",
"LoadPriority": 1,
"RequiredOnClient": true,
"ConVars": [],
"Scripts": [
{
"Path": "sh_spaceships.nut",
"RunOn": "CLIENT || SERVER",
"ClientCallback": {
"Before": "Spaceship_Network"
},
"ServerCallback": {
"Before": "Spaceship_Network"
}
},
{
"Path": "_spaceship_classes.gnut",
"RunOn": "SERVER",
"ServerCallback": {
"After": "SpaceShipClassesInit"
}
},
{
"Path": "shipcontroller.nut",
"RunOn": "SERVER",
"ServerCallback": {
"After": "ShipControllerInit"
}
},
{
"Path": "cl_spaceship_ui.nut",
"RunOn": "CLIENT"
}
],
"Localisation": []
}