forked from Jonbas/LocalShops
-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.yml
71 lines (71 loc) · 2.28 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
67
68
69
70
71
name: ${project.name}
main: ${mainClass}
version: ${project.version}-b${BUILD_NUMBER}
author: Cereal, Sleaker
depend: [Vault]
website: ${project.url}
softdepend: [MultiVerse, DimensionDoor, SimpleSkylands, Inception, WorldManager, MultiWorld, WormholeXTremeWorlds]
description: >
A localized shop plugin for use with Bukkit economies.
Users can create and manage their own shops.
commands:
lshop:
description: Command for managing shops
usage: |
/<command> - displays command help
aliases: [shop]
gshop:
description: Command for managing global shop
usage: |
/<command> - displays command help
aliases: [global]
buy:
description: Command for buying from a shop
usage: |
/<command> - displays command help
sell:
description: Command for selling to a shop
usage: |
/<command> - displays command help
gbuy:
description: Command for buying from the global shop
usage: |
/<command> - displays command help
gsell:
description: Command for selling to the global shop
usage: |
/<command> - displays command help
lsadmin:
description: Command for setting global LocalShops values
usage: |
/<command> - displays command help
permissions:
localshops.local.*:
description: Gives access to buy, sell, and browse local shops
children:
localshops.local.buy: true
localshops.local.sell: true
localshops.local.browse: true
localshops.global.*:
description: Gives access to buy, sell, and browse global shops
children:
localshops.global.buy: true
localshops.global.sell: true
localshops.global.browse: true
localshops.manager.*:
description: Gives access to manage and create local shops
children:
localshops.manager.add: true
localshops.manager.create: true
localshops.manager.destroy: true
localshops.manager.move: true
localshops.manager.remove: true
localshops.manager.select: true
localshops.manager.set: true
localshops.manager.set.owner: true
localshops.admin.*:
description: Gives access to manage all shops on the server
children:
localshops.admin.local: true
localshops.admin.global: true
localshops.admin.server: true