-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.json
106 lines (106 loc) · 2.62 KB
/
doc.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "warps",
"description": "A warps plugin for teleporting places and setting homes",
"author": "cake",
"commands": [
{
"name": "/setwarp",
"description": "Set your current position as a named warp destination",
"example": "/setwarp Cool House",
"args": [
{
"name": "destination",
"description": "Name of saved warp destination",
"required": true
}
]
},
{
"name": "/delwarp",
"description": "Remove an existing warp destination",
"example": "/delwarp Cool House",
"args": [
{
"name": "destination",
"description": "Name of existing warp destination",
"required": true
}
]
},
{
"name": "/clearwarps",
"description": "Clear all stored warps and homes",
"example": "/clearwarps",
"args": []
},
{
"name": "/warp",
"description": "Warp to a destination",
"example": "/warp Cool House",
"args": [
{
"name": "destination",
"description": "Name of existing warp destination",
"required": true
}
]
},
{
"name": "/warps",
"description": "List available warps",
"example": "/warps 1",
"args": [
{
"name": "Page",
"description": "Page number for warps",
"required": false
}
]
},
{
"name": "/home",
"description": "Teleport home. Authorized users can teleport to other users' homes.",
"example": "/home Aware",
"args": [
{
"name": "Target player",
"description": "Name of player",
"required": false
}
]
},
{
"name": "/sethome",
"description": "Set home warp.",
"example": "/sethome",
"args": []
}
],
"config": {
"only-authorized": {
"description": "Whether only authorized players can use warp management commands",
"type": "boolean",
"default": true
},
"authorized-users": {
"description": "List of players who can always use warp management commands",
"type": "players",
"default": []
},
"warp-enabled": {
"description": "Whether non-authorized users can warp and list warps",
"type": "boolean",
"default": true
},
"home-enabled": {
"description": "Whether non-authorized users can set a home warp",
"type": "boolean",
"default": false
},
"warp-cooldown": {
"description": "Seconds between warps for non-authorized users",
"type": "number",
"default": 0
}
}
}