-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.yml
66 lines (63 loc) · 2.39 KB
/
plugin.yml
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
name: CooksMap
main: de.radicarlprogramming.minecraft.cooksmap.CooksMapPlugin
author: Carl Volhard
version: 0.1
commands:
cmap:
description: Shows the Help for CooksMap.
usage: |
/<command> list (([<>][idcn]) | ([idcn][<>=!~].+))* <page>? -> list
/<command> n -> show next page of last search
/<command> p -> show previous page of last search
/<command> goto <page> -> show page <page> of last search
/<command> add (+|-)? <category> <name> -> add current position
/<command> set <id> -> set landmark as new target
/<command> dist -> show distance to current target
/<command> edit <id> (v=(+|-)|c=<category>|n=<name>)+ -> change landmark
/<command> del <id> -> delete landmark
/<command> help <Command> -> show help for Command
permissions:
cmap.*:
default: true
description: Allows use of all CooksMap commands.
children:
cmap.set: true
cmap.add: true
cmap.list: true
cmap.n: true
cmap.p: true
cmap.goto: true
cmap.rm: true
cmap.dist: true
cmap.edit: true
cmap.help: true
cmap.set:
description: Allows player to sets location with the given id as compass target
default: true
cmap.add:
description: Allows Player to adds current location to the map
default: true
cmap.list:
description: Allows player to list/search landmarks
default: true
cmap.n:
description: Allows player to see next page of his last search
default: true
cmap.p:
description: Allows player to see previous page of his last search
default: true
cmap.goto:
description: Allows player to see given page of his last search
default: true
cmap.del:
description: Allows player to delete own landmarks
default: true
cmap.edit:
description: Allows player to edit category, name and visibility of own landmarks
default: true
cmap.dist:
description: Allows player to see the distance to his compass target
default: true
cmap.help:
description: Allows player to see the help for a command
default: true