-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.json
More file actions
100 lines (100 loc) · 3.55 KB
/
doc.json
File metadata and controls
100 lines (100 loc) · 3.55 KB
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
{
"name": "Escape_Infection",
"description": "A plugin which runs the Escape Infection game-mode and tooling.",
"author": "Critical Floof",
"config": {
"Restricted Role": {
"description": "Restricts players with this role from using some commands that can be spammed. Example: /msg",
"type": "role",
"default": "Admin"
},
"Trusted Role": {
"description": "Allows players with this role to utilize commands with elevated permissions.",
"type": "role",
"default": "Admin"
},
"Developer Role": {
"description": "Same as Trusted role but with the addition of potentially dangerous commands, which is locked behind the safety command /dev_enable",
"type": "role",
"default": "Admin"
},
"Map Time Length": {
"description": "The time a map has (in minutes) before a vote is called to switch the map",
"type": "number",
"default": 30
},
"Autosave Interval": {
"description": "The time it takes (in minutes) every autosave occurs",
"type": "number",
"default": 15
},
"Verbose Logging": {
"description": "Extra console logging for debug purposes.",
"type": "boolean",
"default": false
},
"Edit Mode": {
"description": "Whenever the plugin starts, automatically enable edit mode.",
"type": "boolean",
"default": false
}
},
"commands": [
{
"name": "/vote",
"description": "Allows you to pick a choice, whenever a vote occurs",
"example": "/vote 3",
"args": [
{
"name": "number",
"description": "The number that represents your choice",
"required": true
}
]
},
{
"name": "/force_vote",
"description": "Same as voting, but you can force your choice to be selected, or just end it early.",
"example": "/force_vote /force_vote 1",
"args": [
{
"name": "number",
"description": "The number that represents the outcome that is forced",
"required": false
}
]
},
{
"name": "/rtv",
"description": "Allows you to rock the vote, if enough people also rock the vote, then a forced map change vote will start.",
"example": "/rtv"
},
{
"name": "/force_rtv",
"description": "Same as rtv, but you don't need other people to rock the vote.",
"example": "/force_rtv"
},
{
"name": "/map_time",
"description": "Displays the time until the map vote occurs.",
"example": "/map_time"
},
{
"name": "/enable_edit_mode",
"description": "Enables/Disables edit mode.",
"example": "/enable_edit_mode"
},
{
"name": "/load_map",
"description": "Loads a source build and it's environment without running the gamemode.",
"example": "/load_map escape_prototype",
"args": [
{
"name": "map",
"description": "The name of the map which is to be loaded",
"required": true
}
]
}
]
}