Skip to content

How to configure your Unturned server

Updated July 03, 2026
Unturned
Unturned Server Configuration | GameServerKings KB

Unturned Server Configuration

Unturned splits configuration between a startup command list and a JSON file, both at the server root. This guide also covers admins and workshop maps.

Commands.dat

A list of commands run on every server start. Edit through the File Manager:

Code
name My GSK Unturned Server
port 27015
maxplayers 24
password mypassword
pvp
map PEI
mode normal
perspective both
welcome "Welcome to the server!"
CommandNotes
nameServer name
portNetwork port
maxplayersSlot count
passwordEmpty for public
pvp / pveMode toggle
mapA built-in map (PEI, Washington, Russia, Germany, France, etc.) or a workshop map name
modeeasy, normal, hard
perspectivefirst, third, vehicle, both
welcomeWelcome message

Config.json

For finer control, edit Servers/<servername>/Server/Config.json. It controls gameplay multipliers, item and resource spawns, vehicle decay, and zombie behavior. A simplified excerpt:

JSON
{
  "Server": { "BattlEye_Secure": true, "Save_Interval": 600 },
  "Players": { "Lose_Items_PvP": 1.0, "Lose_Items_PvE": 0.0 },
  "Animals": { "Drops_Multiplier": 1.0, "Spawn_Chance": 1.0 },
  "Items": { "Spawn_Chance": 1.0 },
  "Resources": { "Spawn_Chance": 1.0 },
  "Zombies": { "Armor_Multiplier": 1.0, "Damage_Multiplier": 1.0 },
  "Vehicles": { "Quality_Decay": 0.05 }
}

Restart for changes to apply.

Admin Setup

Admins are listed in Servers/<servername>/Server/admins.dat, one SteamID64 per line. For full RCON-level access, add yourself to owners.dat in the same folder.

In-game, press / to open the command bar:

Code
/give <player> <itemID> <amount>
/teleport <player> <location>
/kick <player> <reason>
/ban <player> <reason> <duration>
/admin <player>     Toggle admin status
/save

Maps and Workshop

To use a workshop map:

  1. Browse the Unturned Workshop on Steam and copy the Workshop ID from the URL.
  2. In Startup, set Workshop IDs to a comma-separated list, e.g. 1234567890,2345678901.
  3. In Commands.dat, set map MapName to match the workshop map's name.
  4. Restart. The egg auto-subscribes and downloads workshop content on every start.

World Resets

To wipe, stop the server and rename the entire Servers/<servername>/Level/<MapName>/ folder. On restart, Unturned recreates it fresh. To wipe only player data, delete the player save files inside the map folder.

Made with 💜 by GameServerKings