> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Configure Permission Group Hierarchies in Unturned

> Engineer a professional community structure. Learn how to use RocketMod inheritance to create a fair and scalable progression system for your Unturned server.

## Architecting Your Community Hierarchy

Professional server management relies on a well-defined technical hierarchy. using the **RocketMod Inheritance System**, you can architect a scalable structure where "VIPs" inherit all fundamental player commands while gaining unique specialized perks, and "Admins" possess absolute authority without requiring redundant command registration. This hierarchical model ensures that your [Permissions.config.xml](/games/unturned/setting-up-permissions-in-rocketmod-unturned) remains clean, manageable, and secure as your community expands.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Intermediate
  </Card>

  <Card title="Time" icon="clock">
    6 Minutes
  </Card>
</CardGroup>

***

## The Strategic Inheritance Model

We recommend implementing a standardized 4-tier structure to maintain operational clarity and reward community loyalty.

<Steps>
  <Step title="Guest (The Default Base)">
    The entry-level group for all new participants. Authorized for basic social commands such as `/p` (position) and global chat.
  </Step>

  <Step title="VIP (The Contributor Tier)">
    Inherits from the **Guest** group. Gains access to advanced survival aids such as `/kit`, `/home`, and `/tpa` with optimized cooldowns.
  </Step>

  <Step title="Moderator (The Enforcement Tier)">
    Inherits from the **VIP** group. Authorized for tactical moderation tools including `/kick`, `/vanish`, and `/warn`.
  </Step>

  <Step title="Admin (The Absolute Tier)">
    Inherits from the **Moderator** group. Possesses total world authority, including `/i` (item spawning), `/v` (vehicle spawning), and full `/rcon` execution.
  </Step>
</Steps>

***

## Technical Parameter Calibration

### Defining Command Cooldowns

To prevent community "spam" and maintain the integrity of your server's economic balance, you can restrict the frequency of high-impact commands.

```xml theme={null}
<Permission Cooldown="600">tpa</Permission>
```

* **Technical Result:** The player is restricted to one successful teleportation request every **10 minutes** (600 seconds).

***

## Strategic Automation

<AccordionGroup>
  <Accordion title="using Parent Groups">
    The `<ParentGroup>` tag is the cornerstone of technical efficiency. By defining `<ParentGroup>default</ParentGroup>` within your VIP block, any permission added to the default group is automatically propagated to the VIPs. This eliminates the need for manual duplication and ensures consistent behavior across your entire hierarchy.
  </Accordion>

  <Accordion title="Dynamic Hierarchy Updates">
    Whenever you adjust a permission within a parent group, the changes are instantly inherited by all child groups. This allowing you to perform global server reconfigurations by editing a single group block rather than auditing your entire XML file.
  </Accordion>
</AccordionGroup>

***

<Note>
  ### Need Extra Help?

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

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

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

***

<div align="center">
  **Last Updated:** January 2026 | **Unturned:** Hierarchy defined.
</div>
