Unturned Rocket Permissions Template
Unturned Server Hosting #6
MCrow • 2 months ago
MCrow • 2 months ago
Hello, in this article I share a template of Permissions.config.xml
for Rocket in Unturned. This template includes Admin, Moderator and VIP ranks and some basic permissions.
The permissions configured in this template do not require any plugins. You can use them with the default RocketMod installation.
Rocket/Permissions.config.xml
file.p reload
command.You can find detailed explanation of the template below the code.
<?xml version="1.0" encoding="utf-8"?>
<RocketPermissions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DefaultGroup>default</DefaultGroup>
<Groups>
<Group>
<Id>default</Id>
<DisplayName>Guest</DisplayName>
<Prefix />
<Suffix />
<Color>white</Color>
<Members />
<Priority>100</Priority>
<Permissions>
<Permission Cooldown="0">p</Permission>
<Permission Cooldown="0">home</Permission>
</Permissions>
</Group>
<Group>
<Id>admin</Id>
<DisplayName>Admin</DisplayName>
<Prefix>[Admin] </Prefix>
<Suffix />
<Color>cyan</Color>
<Members>
<Member>76561198016438091</Member>
</Members>
<ParentGroup>moderator</ParentGroup>
<Priority>1</Priority>
<Permissions>
<Permission Cooldown="0">admin</Permission>
</Permissions>
</Group>
<Group>
<Id>moderator</Id>
<DisplayName>Moderator</DisplayName>
<Prefix>[Moderator] </Prefix>
<Suffix />
<Color>green</Color>
<Members>
<Member>76561198016438091</Member>
</Members>
<ParentGroup>default</ParentGroup>
<Priority>10</Priority>
<Permissions>
<Permission Cooldown="0">ban</Permission>
<Permission Cooldown="0">unban</Permission>
<Permission Cooldown="0">kick</Permission>
<Permission Cooldown="0">spy</Permission>
<Permission Cooldown="0">slay</Permission>
</Permissions>
</Group>
<Group>
<Id>vip</Id>
<DisplayName>VIP</DisplayName>
<Prefix>[VIP] </Prefix>
<Suffix />
<Color>yellow</Color>
<Members>
<Member>76561198016438091</Member>
</Members>
<ParentGroup>default</ParentGroup>
<Priority>50</Priority>
<Permissions>
<Permission Cooldown="3600">airdrop</Permission>
</Permissions>
</Group>
</Groups>
</RocketPermissions>
The default group has white color in chat and only two commands: p
and home
.
/p command is to let them check the list of their permissions and commands.
/home is to let them teleport to their home.
The VIP group has yellow color in chat and only one command: airdrop
.
/airdrop is to let them call an airdrop. It has a cooldown of 1 hour (3600 seconds). I think airdrop command is a good, not overpowered command for VIPs, because it has long cooldown and airdrop is dropped in random location on the map, which allows other players to get the loot.
The moderator group has green color in chat and five commands: ban
, unban
, kick
, spy
and slay
.
/ban is used to ban a player from the server.
Usage: /ban <player> [reason] [seconds]
Example: /ban MCrow "Testing the ban command" 3600
will ban me for 1 hour.
💡 PRO TIP
Remember to use the quotation marks for the reason if it has more than one word.
/unban is used to unban a player from the server. You must use the Steam ID of the player.
Usage: /unban <steamID>
Example: /unban 76561198285897058
will unban me.
/kick is used to kick a player from the server.
Usage: /kick <player> [reason]
Example: /kick MCrow "Testing the kick command"
will kick me.
/spy is used to take a screenshot of a player's screen. You will see it when you press ESC
in the game.
Usage: /spy <player>
Example: /spy MCrow
will let you see my chat messages.
/slay is used to kill and permanently ban a player. Useful to ban cheaters.
Usage: /slay <player> [reason]
.
Example: /slay MCrow "Testing the slay command"
will kill me and ban me permanently.
💡 PRO TIP
You can as well use the Steam ID of the player instead of their name to ban them when they are not on the server. For example:/unban 76561198285897058 "Glitch Base"
The admin group has cyan color in chat and only one command: admin
. They have all the permissions of the moderator group including ban
, unban
, kick
, spy
and slay
.
However if they want to have permission to every command on the server like tp
, vanish
, god
and more, they have to use the admin
command to give themselves blue hammer. With blue hammer, they can use every command on the server.
Then if they want to go off duty, they can use the unadmin
command to remove the blue hammer.
This template is a good starting point for your server. You can modify it according to your needs. You can add more groups, change the permissions, colors, prefixes and suffixes.
I hope you have learned something new and thank you for reading 😃