Introduction to Unturned Administration

Effectively managing an Unturned server requires knowledge of essential admin commands and understanding permission systems. This guide covers the most important commands and tools for server administrators on Wasabi Hosting.

Basic Permission Systems

Unturned offers several ways to manage admin permissions on your Wasabi Hosting server:

The built-in permission system is basic but sufficient for small servers.

Permission Levels:

  • Admin - Full server control
  • Moderator - Limited administrative abilities
  • Guest - Regular player

This system is configured in the Admins.dat and Mods.dat files.

Setting Up Vanilla Permissions

To add administrators or moderators to your server:

  1. Find the player’s Steam64 ID using a service like SteamID.io
  2. Add the ID to the appropriate file:

For administrators, edit /Servers/YourServerName/Server/Admins.dat:

// Format: One Steam64 ID per line
76561198012345678
76561198087654321

For moderators, edit /Servers/YourServerName/Server/Mods.dat:

// Format: One Steam64 ID per line
76561198012345678
76561198087654321

After editing these files, restart your server for the changes to take effect.

Vanilla Admin Commands

These commands are available in the base game for administrators:

Player Management

/ban <player/SteamID> [reason]      // Ban a player
/unban <SteamID>                    // Unban a player
/kick <player> [reason]             // Kick a player
/teleport <fromPlayer> [toPlayer]   // Teleport players
/tp <player>                        // Teleport to a player
/tphere <player>                    // Teleport a player to you
/spy <player>                       // Spectate a player
/experience <player> <amount>       // Give experience
/reputation <player> <amount>       // Give reputation
/heal [player]                      // Heal a player
/kill [player]                      // Kill a player
/god [player]                       // Toggle god mode
/vanish                             // Toggle invisibility

Server Management

/shutdown [seconds]                 // Shutdown the server
/save                               // Force a server save
/time <0-24>                        // Set the time of day
/weather <0-100>                    // Set the weather intensity
/day                                // Set time to day
/night                              // Set time to night
/announce <message>                 // Broadcast a message

Item Commands

/give <player> <itemID> [amount]    // Give an item
/vehicle <vehicleID>                // Spawn a vehicle
/item <itemID> [amount]             // Give yourself an item

Moderation Commands

/duty                               // Show as on admin duty (name color)
/logs                               // View recent server logs
/poll <question>                    // Start a poll

Rocket Admin System

If you’re using Rocket (recommended for more control), you’ll have access to more powerful commands and permission management.

Installing Rocket

  1. Download Rocket from the official repository
  2. Extract the files to your server’s root directory
  3. Restart your server
  4. Configure permissions in /Rocket/Permissions.config.xml

Rocket Permission Structure

<RocketPermissions>
  <DefaultGroup>default</DefaultGroup>
  <Groups>
    <Group>
      <Id>default</Id>
      <DisplayName>Player</DisplayName>
      <Color>white</Color>
      <Permissions />
    </Group>
    <Group>
      <Id>moderator</Id>
      <DisplayName>Moderator</DisplayName>
      <Color>yellow</Color>
      <Permissions>
        <Permission>rocket.tp</Permission>
        <Permission>rocket.tphere</Permission>
        <Permission>rocket.heal</Permission>
        <Permission>rocket.kick</Permission>
      </Permissions>
    </Group>
    <Group>
      <Id>admin</Id>
      <DisplayName>Admin</DisplayName>
      <Color>red</Color>
      <ParentGroup>moderator</ParentGroup>
      <Permissions>
        <Permission>rocket.*</Permission>
      </Permissions>
    </Group>
  </Groups>
</RocketPermissions>

The ParentGroup element creates permission inheritance, so admins automatically get all moderator permissions.

User Management in Rocket

To add a user to a group, edit /Rocket/Permissions.config.xml and add:

<Players>
  <Player>
    <Id>76561198012345678</Id>
    <DisplayName>AdminName</DisplayName>
    <Group>admin</Group>
  </Player>
</Players>

Essential Rocket Commands

Rocket adds many additional commands:

/rocket                             // Shows Rocket help
/p <permission>                     // Check if you have a permission
/reloadplugins                      // Reload all plugins
/ban <player> <duration> [reason]   // Ban with duration
/bans                               // View all bans
/unban <player>                     // Unban a player
/kits                               // View available kits
/kit <kitName> [player]             // Give a kit
/heal [player]                      // Heal player
/v <vehicleName>                    // Spawn vehicle by name
/i <itemName> [amount]              // Give item by name
/more                               // Get more of held item
/position                           // Show coordinates
/home                               // Teleport to home
/sethome                            // Set home location
/tpa <player>                       // Request teleport to player
/tpaccept                           // Accept teleport request
/tpdeny                             // Deny teleport request

Common Rocket Plugins and Their Commands

OpenMod Commands

If you’re using OpenMod, here are some essential commands:

/openmod <subcommand>               // OpenMod main command
/openmod install <plugin>           // Install plugin
/openmod remove <plugin>            // Remove plugin
/openmod users add <name> <type>    // Add user
/openmod perm <subcommand>          // Permission management
/openmod translations <subcommand>  // Manage translations

To manage permissions in OpenMod:

/openmod perm add <actor> <permission>  // Add permission
/openmod perm remove <actor> <permission> // Remove permission
/openmod roles add <name>           // Add role
/openmod roles remove <name>        // Remove role
/openmod roles addperm <role> <permission> // Add permission to role

Finding Item and Vehicle IDs

Server Console Commands

These commands can be used in the Wasabi Hosting Gamepanel console:

save                                // Force save
shutdown [seconds]                  // Shutdown the server
ban <steamID> [reason]              // Ban by Steam ID
unban <steamID>                     // Unban by Steam ID
kick <player/steamID> [reason]      // Kick a player
say <message>                       // Broadcast a message
teleport <playerA> <playerB>        // Teleport players
give <player> <itemID> <amount>     // Give items

Economy Management

If you’re using an economy plugin like Uconomy:

/setbalance <player> <amount>       // Set a player's balance
/pay <player> <amount>              // Pay a player
/balance [player]                   // Check balance
/baltop                             // Show richest players
/withdraw <amount>                  // Convert money to item
/deposit <amount>                   // Convert item to money
/resetbalance <player>              // Reset to default
/addbalance <player> <amount>       // Add to balance

Advanced Admin Tools

Anti-Cheat Commands

If you have CheatPunch or BattlEye enabled:

/cheats                             // View detected cheats
/report <player> [reason]           // Report a player
/cheater <player>                   // Mark as cheater
/whitelist <steamID>                // Add to anti-cheat whitelist
/reportstats                        // View report statistics

Event Management

For hosting server events:

/event start <type>                 // Start an event
/event stop                         // Stop current event
/event teleport                     // Teleport players to event
/event announce <message>           // Announce to participants
/event reward <player> <amount>     // Reward participant

Setting Up Auto-Commands

You can configure commands to run automatically at server startup or at intervals:

  1. Create or edit /Rocket/AutoCommands.config.xml:
<AutoCommands>
  <Interval>300</Interval>
  <Commands>
    <Command>say Server will save in 10 seconds</Command>
    <Command delay="10">save</Command>
    <Command>say Server saved successfully</Command>
  </Commands>
</AutoCommands>
  1. This will run the specified commands every 300 seconds (5 minutes)

Troubleshooting Permission Issues

If commands aren’t working on your Wasabi Hosting Unturned server:

  1. Check syntax - Commands are case-sensitive
  2. Verify permissions - Make sure the user has the correct permissions
  3. Check plugin compatibility - Some plugins conflict with each other
  4. Look at logs - Check /Rocket/Logs/ for error messages
  5. Test in single-player - Try the command in a single player game
  6. Restart the server - Permission changes often require a restart

By understanding these commands and permission systems, you’ll be equipped to effectively manage your Unturned server on Wasabi Hosting. If you need further assistance, contact our support team.