Articles on: Unturned

How to Setup RocketMod Permissions System

How to Setup RocketMod Permission System


  1. The first thing you will want to do is navigate to ./Servers/unturned/Rocket


  1. Once you get there you should see a file called Permissions.config.xml


  1. So once you get there you will see the default roles for Rocketmod.


  1. You will most likely want to edit these roles to add Staff Roles, Donator Roles, and regular players roles.


  1. Rocketmod automatically has Prefixes and Suffixes added. You can leave it blank to not use them. Example:<Prefix></Prefix>


  1. Rocketmod also requires you to only use the default group for all players.


  1. Adding people to these roles is not as easy you will need to find a plugin called rocket tools and install it to add players while the server is running.(Information at the bottom)


Example of adding a new role


<Group>
<Id>ExampleRole</Id>
<DisplayName>ExampleRole</DisplayName>
<Prefix>[ExampleRole]</Prefix>
<Suffix />[ExampleRole]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
</Permissions>
</Group>


Example of adding permissions to a role


<Group>
<Id>ExampleRole</Id>
<DisplayName>ExampleRole</DisplayName>
<Prefix>[ExampleRole]</Prefix>
<Suffix />[ExampleRole]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
<Permission Cooldown="0">ExamplePermission</Permission>
</Permissions>
</Group>


Example of different roles


<Group>
<Id>Owner</Id>
<DisplayName>Owner</DisplayName>
<Prefix>[Owner]</Prefix>
<Suffix />[Owner]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
<Permission Cooldown="0">ExamplePermission</Permission>
</Permissions>
</Group>


<Group>
<Id>Co-Owner</Id>
<DisplayName>Co-Owner</DisplayName>
<Prefix>[Co-Owner]</Prefix>
<Suffix />[Co-Owner]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
<Permission Cooldown="0">ExamplePermission</Permission>
</Permissions>
</Group>


<Group>
<Id>VIP</Id>
<DisplayName>VIP</DisplayName>
<Prefix>[VIP]</Prefix>
<Suffix />[VIP]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
<Permission Cooldown="0">ExamplePermission</Permission>
</Permissions>
</Group>


<Group>
<Id>VIP+</Id>
<DisplayName>VIP+</DisplayName>
<Prefix>[VIP+]</Prefix>
<Suffix />[VIP+]</Prefix>
<Color>yellow</Color>
<Members />
<ParentGroup />
<Priority>99</Priority>
<Permissions>
<Permission Cooldown="0">ExamplePermission</Permission>
</Permissions>
</Group>


Rocket Tools Information


This plugin can be installed via the mod manager in your game panel. Once its installed you can use the following commands.


Adding Players to Groups


`p add playername groupname `


Removing Players from Groups


`p remove playername groupname `



If you require any further assistance, please create a ticket here.


Created By: Griffin H.

Updated on: 01/07/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!