-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.yml
134 lines (132 loc) · 3.94 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: iColite
main: omg.icolite.iColite
version: 0.1.0
author: Nijikokun
website: http://github.com/iConomy/lite
# Command Central
commands:
money:
aliases: [ iConomy, iColite, iCo, icolite, ico ]
description: Distrobute, transfer, exchange and use currency
usage: /<command> [option [args[.[.]]]]
# Permission Dataset
permissions:
iConomy.*:
default: op
description: Super-permission, gives access to any command
children:
iConomy.help: true
iConomy.holdings: true
iConomy.holdings.others: true
iConomy.top: true
iConomy.payment: true
iConomy.accounts.create: true
iConomy.accounts.remove: true
iConomy.accounts.give: true
iConomy.accounts.take: true
iConomy.accounts.set: true
iConomy.accounts.status: true
iConomy.accounts.status.set: true
iConomy.accounts.purge: true
iConomy.accounts.empty: true
iConomy.accounts.*:
description: Gives access to all account based commands
children:
iConomy.accounts.create: true
iConomy.accounts.remove: true
iConomy.accounts.give: true
iConomy.accounts.take: true
iConomy.accounts.set: true
iConomy.accounts.status: true
iConomy.accounts.status.set: true
iConomy.accounts.purge: true
iConomy.accounts.empty: true
iConomy.plus:
description: Gives access to user plus only commands
children:
iConomy.help: true
iConomy.holdings: true
iConomy.holdings.others: true
iConomy.top: true
iConomy.payment: true
iConomy.user:
description: Gives access to user only commands
children:
iConomy.help: true
iConomy.holdings: true
iConomy.payment: true
iConomy.help:
description: Allows you to request help information.
default: op
command: "/money help"
iConomy.holdings:
description: Check your balance.
default: op
command: "/money"
iConomy.holdings.others:
description: Check other players balance.
default: op
command: "/money <account-name>"
examples:
- "/money Nijikokun"
iConomy.top:
description: View top-most accounts.
default: op
command: "/money top"
iConomy.payment:
description: Send money to others.
default: op
command: "/money pay <account-name> <amount>"
examples:
- "/money pay Nijikokun 30"
iConomy.accounts.create:
description: Create an account.
default: op
command: "/money create <account-name> [amount]"
examples:
- "/money create Nijikokun"
- "/money create Nijikokun 30"
iConomy.accounts.remove:
description: Remove an existing account
default: op
command: "/money remove <account-name>"
examples:
- "/money remove Nijikokun"
iConomy.accounts.give:
description: Give account a certain amount
default: op
command: "/money give <account-name> <amount>"
examples:
- "/money give Nijikokun 30"
iConomy.accounts.take:
description: Take a certain amount from an account
default: op
command: "/money take <account-name> <amount>"
examples:
- "/money take Nijikokun 30"
iConomy.accounts.set:
description: Set an account's balance to this amount
default: op
command: "/money set <account-name> <amount>"
examples:
- "/money set Nijikokun 30"
iConomy.accounts.status:
description: Check to see the status of an account (Visible, Hidden, Etc)
default: op
command: "/money status <account-name>"
examples:
- "/money status Nijikokun"
iConomy.accounts.status.set:
description: Set the status of an account (Visible (1), Hidden (0))
default: op
command: "/money status <account-name>"
examples:
- "/money status Nijikokun"
iConomy.accounts.purge:
description: Purge all accounts with default creation value.
default: op
command: "/money purge"
iConomy.accounts.empty:
description: Empty / Drop entire database of accounts.
default: op
command: "/money empty"