You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ This is a Bukkit/Spigot plugin for permissions, multiworld features and other ad
17
17
## Develpement and Version
18
18
19
19
API Version: *1.17.x*<br>
20
-
Plugin Version: *v2.2*<br>
20
+
Plugin Version: *v2.3*<br>
21
21
Java Class Version: *52 (Java8)*<br>
22
22
23
23
## Commands
@@ -30,11 +30,11 @@ Java Class Version: *52 (Java8)*<br>
30
30
|inventory|`/inventory [<player>]`|`serversystem.command.inventory`|false|Open the inventory of a player|
31
31
|lobby|`/lobby`|`serversystem.command.lobby`|true|Teleport player to lobby|
32
32
|permission|`/permission [<player>] [<group>]`|`serversystem.command.permission`|false|Set the permissions of a player|
33
-
|setwarp|`/setwarp [name] [<item>] [<global>] [permission]`|`serversystem.command.setwarp`|false|Set a warp location|
34
-
|removewarp|`/removewarp [<warp>]`|`serversystem.command.removewarp`|false|Remove a warp location|
35
33
|vanish|`/vanish [<player>]`|`serversystem.command.vanish`|false|Allow the player to vanish|
36
-
|warp|`/warp [<warp>]`|`serversystem.command.warp`|true|Teleport player to a location|
37
-
|world|`/world [action] [<world>] [<player] /world [action] [<world>] [action] [boolean]`|`serversystem.command.world`|false|Teleport player to an other world or edit an other world|
34
+
|warp|`[/warp <warp>] [<action>] [<option>] [value]`|`serversystem.command.warp``serversystem.command.warp.edit`|true|Teleport player to a location|
35
+
|world|`/world [<world>] [<action>] [<option>] [value]`|`serversystem.command.world``serversystem.command.world.edit`|false|Teleport player to an other world or edit an other world|
36
+
37
+
The commands `world` and `warp` can be used to teleport with `serversystem.command.world` and `serversystem.command.warp`. The edit the warps and worlds use the same command, but with the permissions `serversystem.command.world` and `serversystem.command.warp`.
38
38
39
39
## Permissions
40
40
|Permission|Default|Description|
@@ -45,8 +45,6 @@ Java Class Version: *52 (Java8)*<br>
45
45
|`serversystem.command.inventory`|op|Open the inventory of a player|
46
46
|`serversystem.command.lobby`|true|Teleport player to lobby|
47
47
|`serversystem.command.permission`|false|Set the permissions of a player|
48
-
|`serversystem.command.setwarp`|op|Set a warp location|
49
-
|`serversystem.command.removewarp`|op|Remove a warp location|
50
48
|`serversystem.command.vanish`|op|Allow the player to vanish|
51
49
|`serversystem.command.warp`|op|Teleport player to a location|
52
50
|`serversystem.command.world`|op|Teleoprt player to other teleport player to an other world or edit an other world|
@@ -112,7 +110,7 @@ hogwarts:
112
110
In this example world and world_nether are in the same worldgroup while the world hogwarts has his own separated worldgroup.
113
111
114
112
### Disable commands and default permissions
115
-
You can disable permissions simply by adding the permission to the list. For example, you can disable minecraft default commands by adding its permission.
113
+
You can disable permissions simply by adding the permission to the list. For example, you can disable minecraft default commands by adding its permission. Disabled permissions will be removed for each group, even they would get the permission, disabled permissions are overwriting the group permissions! Permissions can't be shortet by using a `*`!
116
114
117
115
```json
118
116
DisabledPermissions:
@@ -143,7 +141,8 @@ Groups:
143
141
prefix: '[Moderator] '
144
142
permissions:
145
143
- serversystem.command.permission
146
-
- minecraft.command.*
144
+
- minecraft.command.*`
145
+
- -bukkit.command.*
147
146
admin:
148
147
id: 01RankAdmin
149
148
color: dark_red
@@ -155,6 +154,8 @@ Groups:
155
154
- bukkit.command.*
156
155
```
157
156
157
+
Permissions can be shorted with `*` at the end of the string, which means that all permissions will be added, which starts with this prefix. Permissions can also be removed by adding a `-` at the beginning of the string!
158
+
158
159
The id of the group is unimportant except for the number in front of the name. The number defines the order of the player in the tabbar. The Rank `04RankSupporter` will be displayed below the `01RankAdmin` but above the `06RankPremium` for example. Make sure you have an empty space after the prefix, otherwise the prefix will be displayed directly in front of the player's name. You can find an example for the tabbar at the end of the document as image.
159
160
160
161
You can use the colors codes listed in the [Minecraft Wiki](https://minecraft.gamepedia.com/Formatting_codes#Color_codes"Color Codes").
0 commit comments