-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yml
More file actions
52 lines (52 loc) · 1.76 KB
/
Copy pathplugin.yml
File metadata and controls
52 lines (52 loc) · 1.76 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
50
51
52
---
name: PrivateChat
version: 1.0.0
main: AmitxD\PrivateChat\PrivateChat
src-namespace-prefix: AmitxD\PrivateChat
api: 4.12.8
author: AmitxD
website: https://github.com/Amitminer888/PrivateChat
description: A plugin for private chatting with selected players
commands:
pc:
description: Main command for the PrivateChat plugin
usage: /pc <add|remove|list|chat>
permission: privatechat.command.pc
aliases: [privatechat, pchat]
subcommands:
add:
description: Add a player to your private chat group
usage: /pc add <player>
permission: privatechat.command.pc.add
remove:
description: Remove a player from your private chat group
usage: /pc remove <player>
permission: privatechat.command.pc.remove
list:
description: List the players in your private chat group
usage: /pc list
permission: privatechat.command.pc.list
chat:
description: Enable or disable private chat mode
usage: /pc chat <on|off>
permission: privatechat.command.pc.chat
permissions:
privatechat.*:
description: Gives access to all PrivateChat plugin commands and features
default: op
privatechat.command.pc:
description: Gives access to the main /pc command
default: true
privatechat.command.pc.add:
description: Allows players to add others to their private chat group
default: true
privatechat.command.pc.remove:
description: Allows players to remove others from their private chat group
default: true
privatechat.command.pc.list:
description: Allows players to list the members of their private chat group
default: true
privatechat.command.pc.chat:
description: Allows players to enable or disable private chat mode
default: true
...