forked from PocketMine/SimpleAuth
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathplugin.yml
57 lines (56 loc) · 1.7 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
name: SimpleAuth
main: SimpleAuth\SimpleAuth
version: 2.1.3
api: [3.0.0]
load: STARTUP
author: PocketMine Team
authors: [shoghicp]
description: Prevents people from impersonating an account, requires registration and login when connecting.
website: https://github.com/PocketMine/SimpleAuth
commands:
login:
description: "Logs into an account"
usage: "/login <password>"
permission: simpleauth.command.login
register:
description: "Registers an account"
usage: "/register <password>"
permission: simpleauth.command.register
link:
description: "Links an account"
usage: "/link <other account><other password>"
permission: simpleauth.command.link
unlink:
description: "Unlinks linked accounts"
usage: "/unlink"
permission: simpleauth.command.unlink
permissions:
simpleauth:
default: op
description: "Allows using everything SimpleAuth has"
children:
simpleauth.chat:
description: "Allows using the chat while not being authenticated"
default: false
simpleauth.move:
description: "Allows moving while not being authenticated"
default: false
simpleauth.lastid:
description: "Allows authenticating using the last id when enabled in the config"
default: true
simpleauth.command:
description: "Allows using SimpleAuth commands"
default: true
children:
simpleauth.command.register:
description: "Allows registering an account"
default: true
simpleauth.command.login:
description: "Allows logging into an account"
default: true
simpleauth.command.link:
description: "Allows linking to another account"
default: true
simpleauth.command.unlink:
description: "Allows unlinking an account"
default: true