How to Setup RocketMod Permissions System
How to Setup RocketMod Permission System
- The first thing you will want to do is navigate to ./Servers/unturned/Rocket
- Once you get there you should see a file called Permissions.config.xml
- So once you get there you will see the default roles for Rocketmod.
- You will most likely want to edit these roles to add Staff Roles, Donator Roles, and regular players roles.
- Rocketmod automatically has Prefixes and Suffixes added. You can leave it blank to not use them. Example:<Prefix></Prefix>
- Rocketmod also requires you to only use the default group for all players.
- 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
Thank you!