Skip to main content

Authority via XML: The RocketMod Hierarchy

The RocketMod permission system is the fundamental engine that dictates executive authority within your Unturned community. By using a rigorous XML-based structure, you can precisely define which players are authorized to use specialized tools (such as /v for vehicle spawning) and which staff members possess the power to moderate the player base. Because XML is a highly sensitive technical format, maintaining syntax integrity is essential; a single misplaced character can invalidate the entire registry, resulting in the instantaneous demotion of your entire staff team.

Difficulty

Intermediate

Time

10 Minutes

Technical File Architecture

Your community’s authority registry is situated within the following path: /Servers/Default/Rocket/Permissions.config.xml. We recommend using an SFTP Client to download and edit this file locally using a technical text editor like Notepad++ or VS Code.

Authorizing Community Ranks

1. Managing Group Membership

To assign a specific rank (e.g., Admin or VIP) to a player, you must register their 17-digit SteamID64 within the appropriate <Members> block.
<Group>
    <Id>admin</Id>
    <Members>
        <Member>76561198031234567</Member>
    </Members>
</Group>

2. Granting Functional Access

The <Permissions> block within each group defines the technical scope of that rank. You can assign specific plugin commands and even implement temporal restrictions (cooldowns).
<Permissions>
  <Permission Cooldown="0">v</Permission>
  <Permission Cooldown="300">heal</Permission>
</Permissions>

Deployment & Verification

Unlike many core server variables, permissions can be synchronized dynamically without requiring a full server reboot.
1

Commit Modifications

Save your changes to the Permissions.config.xml file and upload it to the server.
2

Initialize Re-Sync

In the server console (or in-game if already authorized), execute: rocket reload permissions
3

Verify Syntax Status

Monitor the console for a green confirmation message: Permissions reloaded.

Critical Syntax Recovery

If the reload command returns a red error, do not disconnect from your administrative session. The error indicates an XML formatting failure. If left uncorrected, the engine will fail to load any permissions upon the next initialization, effectively locking you out of your administrative tools. Re-verify your closing tags and bracket placements immediately.

Need Extra Help?

If you encounter any issues, our support team is ready to assist:

Save on Your Hosting

Ready to get a new server? Use code KB20 at checkout for 20% off your first month!

Last Updated: January 2026 | Unturned: Permissions secured.