-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yml
More file actions
49 lines (48 loc) · 1.91 KB
/
plugin.yml
File metadata and controls
49 lines (48 loc) · 1.91 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
---
name: DynamicShopUI
main: BreathTakinglyBinary\DynamicShopUI\DynamicShopUI
api: 3.2.0
version: 1.2.0
depend: [EconomyAPI]
author: FiberglassCivic(95CivicSi)
"permissions": {
"dsu": {
"default": "op",
"description": "Allows access to all DynamicShopUI features.",
"children": {
"dsu.configuration": {
"default": "op",
"description": "Allows modifying the configuration in-game."
},
"dsu.command": {
"default": "op",
"description": "Allows access to all DSU command features.",
"children": {
"dsu.command.manage": {
"default": "op",
"description": "Allows user to manage buy/sell options for the shop."
},
"dsu.command.sell": {
"default": "op",
"description": "Allows the use of all sell options.",
"children": {
"dsu.command.sell.all": {
"default": "op",
"description": "Allows players to use the sell all command."
},
"dsu.command.sell.hand": {
"default": true,
"description": "Allows players to use the sell all command."
}
}
},
"dsu.command.shop": {
"default": true,
"description": "Allows access to the Shop UI so players can buy items."
}
}
}
}
}
}
...