forked from BoxOfDevs/CommandShop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yml
More file actions
38 lines (38 loc) · 1.17 KB
/
plugin.yml
File metadata and controls
38 lines (38 loc) · 1.17 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
---
name: CommandShop
author: BoxOfDevs Team
version: 1.0.0
main: BoxOfDevs\CommandShop\CommandShop
api: [3.0.0-ALPHA7, 3.0.0-ALPHA8, 3.0.0-ALPHA9, 3.0.0-ALPHA10]
softdepend: EconomyAPI
commands:
cshop:
description: "Create, manage and remove 'buyable' commands"
usage: "/cshop <add|remove|setprice|sign|buycmd|addcmd|list|info|help> <args>"
permission: cshop.command.manage
buycmd:
description: "'Buy' a command"
usage: "/buycmd <command>"
permission: cshop.buy.command
permissions:
cshop:
default: op
description: "Main permission for CommandShop"
children:
cshop.command.manage:
default: op
description: "Permission for '/cshop'"
cshop.breaksign:
default: op
description: "Permission for breaking CommandShop signs"
cshop.buy:
default: op
description: "Permission for 'buying' commands via '/buycmd' AND via signs"
children:
cshop.buy.command:
default: true
description: "Permission for 'buying' commands via '/buycmd'"
cshop.buy.sign:
default: true
description: "Permission for 'buying' commands via signs"
...