Skip to main content

Authority through XML


RocketMod’s permission system is built on a strict XML structure. It dictates everything from who can spawn vehicles to who has the authority to ban players. Because XML is unforgiving, a single missing bracket or typo can break the entire file, demoting all staff to “Guest” rank instantly.
Reading TimeDifficultyLast Updated
10 minutesIntermediateJanuary 2026

1. Locating the Master Config

  1. Access your server files via SFTP or the File Manager.
  2. Navigate to: /Servers/Default/Rocket/
  3. Download or open Permissions.config.xml.

2. Adding a Member to a Group

To grant a player “Admin” or “VIP” status, you must add their SteamID64 to the <Members> section of that specific group:
<Group>
    <Id>admin</Id>
    <Members>
        <Member>76561198031234567</Member>
    </Members>
</Group>

3. Granting Command Access

Inside each <Group>, the <Permissions> block lists exactly what that rank is allowed to do. To allow a group to use a specific plugin command (like /v for vehicles):
<Permissions>
  <Permission Cooldown="0">v</Permission>
  <Permission Cooldown="300">heal</Permission>
</Permissions>

4. Applying Changes Without a Restart

You do not need to reboot your entire server to update permissions. Once the file is saved:
  1. Open the server console or use the in-game chat (if you are already an admin).
  2. Type: /rocket reload permissions
  3. The server will display “Permissions reloaded” if the XML syntax is correct.

Support Channels

If you need assistance or have any questions, please contact our support team:

First Month Discount

Use code KB20 at checkout to get 20% off your first month of hosting!

Last Updated: January 2026 | Unturned: Permissions secured.