background image
Game Servers 380 7 Days to Die 4 Abiotic Factor 2 Aloft 2 alt:V 2 Americas Army Proving Grounds 2 Among Us 2 Archean 2 ARK Survival Ascended 6 ARK Survival Evolved 3 Arma 3 3 Arma Reforger 2 Aska 2 AssaultCube 2 Assetto Corsa 3 Astro Colony 2 Astroneer 2 Automobilista 2 2 Avorion 2 Banana Shooter 2 Barotrauma 3 BATTALION Legacy 2 BeamNG.drive (BeamMP) 2 Black Mesa 2 Brickadia 2 Call of Duty 2 Citadel: Forged with Fire 2 ClassiCube 2 Clone Hero 2 Colony Survival 2 Conan Exiles 4 Contagion 2 Core Keeper 2 Counter-Strike 2 3 Craftopia 2 CryoFall 2 CS2D 2 Cube 2: Sauerbraten 2 Cubic Odyssey 2 DayZ 4 DDNet 2 DDRaceNetwork 2 Dead Matter 2 Dont Starve Together 4 Eco 2 Empyrion Galactic Survival 2 Enshrouded 3 Escape from Tarkov 2 Euro Truck Simulator 2 2 Factorio 2 Farming Simulator 25 2 Fistful of Frags 2 FiveM 3 FortressCraft Evolved 2 Foundry 2 Foundry VTT 2 Frozen Flame 2 FTL Tachyon 2 Garrys Mod 3 Ground Branch 2 Half-Life 2 Deathmatch 2 Hogwarp 2 Holdfast: Nations at War 2 HumanitZ 2 Hurtworld 2 Hytale 1 Icarus 2 Insurgency Sandstorm 2 IOSoccer 2 Just Cause 3 Multiplayer 2 Kerbal Space Program 2 Killing Floor 2 3 LeagueSandbox 2 Left 4 Dead 2 Left 4 Dead 2 3 Longvinter 2 Los Angeles Crimes 2 Medal of Honor 2 Midnight Ghost Hunt 2 Mindustry 2 Minecraft 4 Minetest 2 Modiverse 2 Mordhau 3 Mount & Blade II: Bannerlord 2 Myth of Empires 2 Nazi Zombies Portable 2 Necesse 2 NeosVR 2 Neverwinter Nights EE 2 Night of the Dead 2 Nightingale 2 No Love Lost 2 No More Room in Hell 2 No One Survived 2 Nova-Life Amboise 2 Nuclear Option 2 Onset 2 Open Fortress 2 OpenArena 2 OpenRA 2 OpenRCT2 2 OpenTTD 2 Operation Harsh Doorstop 2 Palworld 3 Path of Titans 2 Pavlov VR 3 PixARK 2 Plains of Pain 2 Portal Knights 2 Post Scriptum 2 Project Zomboid 8 Puck 2 Quake Live 2 R5Reloaded 2 RedM 2 Renown 2 Resonite 2 Return to Moria 2 Rimworld Together 2 Rising World 2 Risk of Rain 2 1 Rust 4 Satisfactory 1 SCP Secret Laboratory 3 SCUM 2 Smalland 2 Solace Crafting 2 Soldat 2 Soldat 2 2 Sonic Robo Blast 2 2 Sons of the Forest 2 Soulmask 2 SourceCoop 2 Space Engineers 3 Space Station 14 2 Squad 3 Starbound 3 StarMade 2 Stationeers 2 Stormworks 2 Subnautica Nitrox 2 Sunkenland 2 SuperTuxKart 2 Sven Co-op 2 Swords 'n Magic and Stuff 2 Team Fortress 2 3 Teeworlds 2 Terraria 3 TerraTech Worlds 2 TF2 Classified 2 The Forest 3 The Front 2 The Isle 2 Tower Unite 2 Trackmania 2 Unturned 4 Urban Terror 2 V Rising 3 Valheim 3 VEIN 2 Veloren 2 Vintage Story 3 Voyagers of Nera 2 Wolfenstein: Enemy Territory 2 Wreckfest 2 Wurm Unlimited 2 Xonotic 2 Zandronum 2 Getting Started 2 Network & Connectivity 1 Server Management 2
Kategorier

Empyrion Admin Commands

empyrion admin commands gamemaster 0 tyckte att detta var hjälpsamt

This guide covers all admin and console commands available for your Empyrion: Galactic Survival dedicated server on Legion Hosting. Learn how to set up admin permissions, manage players, and use GameMaster commands to administer your server. For initial server setup and configuration, see our Empyrion: Galactic Survival Server Setup Guide.

Permission Levels

Empyrion uses a numbered permission system where lower numbers grant higher privileges. Each permission level includes all commands available to higher-numbered levels.

Level Role Code Description
0 Player pl Default permission level for all players. Access to basic commands only.
3 GameMaster gm Elevated permissions for game management, teleportation, spawning, and world control.
6 Moderator mod Player management capabilities including banning, giving items, and entity management.
9 Admin admin Full administrative privileges including role assignment, playfield management, and server control.
Permission Inheritance: A player with GameMaster (level 3) has access to all commands that require level 3 or higher (3+, 6+, 9+). Admin (level 9) has access to every command.

Setting Up Admin Permissions

Method 1: adminconfig.yaml (Recommended)

The most reliable way to set up admin permissions is through the adminconfig.yaml file. This file is located in your server's Saves/ folder (or sometimes alongside your dedicated.yaml).

Create or edit adminconfig.yaml with the following structure:

Elevated:
  - Id: 76561198012345678
    Permission: 3
    Name: "PlayerOne"
  - Id: 76561198087654321
    Permission: 9
    Name: "ServerAdmin"

Banned:
  - Id: 76561198099999999
    Until: "2027-01-01 00:00:00"

Each entry requires:

  • Id — The player's SteamID64 (a 17-digit number starting with 7656)
  • Permission — The permission level to assign (3 = GameMaster, 6 = Moderator, 9 = Admin)
  • Name — The player's name (optional, for your reference)
Finding a SteamID64: Players can find their SteamID64 by visiting steamid.io and entering their Steam profile URL. The SteamID64 is a 17-digit number that starts with 7656.

Method 2: initadmin Console Command

If you are logged into the server as a player and no admin has been set yet, you can use the initadmin command to set yourself as the initial administrator:

initadmin

This only works if no admin is currently configured. Once an admin exists, further role assignments must be done through the setrole command or the adminconfig.yaml file.

Method 3: setrole Console Command

Existing admins (permission level 9) can assign roles to other players using the setrole command:

setrole PlayerName gm       # Set as GameMaster (level 3)
setrole PlayerName mod      # Set as Moderator (level 6)
setrole PlayerName admin    # Set as Admin (level 9)
setrole PlayerName pl       # Reset to Player (level 0)

You can also use the player's SteamID64 instead of their name:

setrole 76561198012345678 gm

Opening the Console

To access the in-game console, press the tilde key (~) on your keyboard. The console allows you to enter commands directly while playing. All commands are case-insensitive.

Telnet Console: You can also send commands remotely via Telnet if enabled in your dedicated.yaml. Connect using PuTTY or a similar terminal client with Raw connection type (not standard Telnet) to the Telnet port (default: 1030). See the Server Setup Guide for Telnet configuration details.

Player Commands (Level 0+)

These commands are available to all players.

Command Description
help List all available console commands. Use help [command] for details on a specific command.
detach Detaches the local player if stuck under a cockpit or in geometry
destroyme Kills your own character (useful if stuck)
undock Undocks a specified SV or HV from its parent structure
difficulties Shows the current difficulty settings for the game
origins Lists available origins (starting factions)
oxygen Shows oxygenated areas in a POI
combiner Toggles mesh combiner on/off (performance)
deco Toggles terrain decorations on/off (performance)
initadmin Sets yourself as the initial administrator (only works if no admin is set)

GameMaster Commands (Level 3+)

GameMaster commands provide control over the game world, entities, and player state.

Player and Entity Management

Command Description
godmode / gm Toggles god mode (invulnerability) for yourself
itemmenu / im Enables/disables the creative item menu for spawning any item
kick [player] Kick a player (or all players) from the game
unban [player|SteamID] Remove a ban for a player
list Lists players with special permissions and banned players
level [set|add] [value] Modify level, experience points, or upgrade points for the current player
entity [operation] Perform various operations on entities (use help entity for details)
ents List all entities on the current playfield
find [name] Find a structure by name within the current playfield and display its ID
faction [operation] Faction management helper functions

Teleportation and Movement

Command Description
teleport [x] [y] [z] / tt Teleport yourself (and controlled ship) to specific coordinates
setposition [entity] [x] [y] [z] Set the position of an entity to specific coordinates
setrotation [entity] [x] [y] [z] Set the rotation of a structure
sector [x] [y] [z] Jump to a specific sector in space

World and Game Management

Command Description
changemode Switch the game between Survival and Creative mode
map Uncovers all resources and POIs on the current map
regenerate [entityId] Regenerate a POI or structure, restoring it to its original state
weather [type] Activate a custom weather setting on the current playfield
time [set] [value] Get or set the global server time
finishbp / fbp Instantly finish the current blueprint production
spawnanyblueprint / sbp Toggle the ability to spawn any blueprint regardless of requirements
gameoptions / gopt List all current game option values (see Game Options section below)
op [entityId] Toggle offline protection on a specific structure
wipe [target] Wipe targeted aspects after server reboot (use carefully)
stats Print status information about the current playfield
traders List all traders and reload the trader config file

Status Effects and Player State

Command Description
statuseffect [effect] Apply a status effect to the player
statuseffectremove [effect] Remove a status effect from the player
prefabactivate Switch all powered blocks on in a structure
prefabinfo Show information about a user blueprint
resetcore Clear fuel and oxygen in the local structure

Moderator Commands (Level 6+)

Moderator commands add player management and entity control capabilities.

Command Description
ban [player] [duration] Ban a player for a specified amount of time
give [player] [itemId] [amount] Give items to a player by item ID
repair [player] Repair a player's items
destroy [entityId] Destroy an entity or structure
debugmenu / dm Enable/disable the debug menu
armor [operation] Armor adjustments for players
gents [factionId] List all structures belonging to a specific faction
alliances List alliances, alliance requests, and manage alliance settings
sectors [reveal|hide] Reveal or hide playfields on the map
ai Toggle AI on or off for the current playfield
si Toggle structural integrity calculations on or off
globaleffects Show current global effects active on the server
marker [operation] Manage map markers
weathersv [type] Activate a custom weather setting server-wide
poimanager POI (Point of Interest) management commands

Admin Commands (Level 9)

Admin commands provide the highest level of server control.

Command Description
setrole [player|SteamID] [role] Set a player's permission role (gm, mod, admin, pl)
playfield / pf Reload the current playfield (server-only command)
replaceblocks [entityId] [blockFrom] [blockTo] Replace specified blocks in a structure with another block type
setdevicespublic [entityId] Set all devices in a structure to public access
pda [operation] Execute PDA-related commands (use help pda for details)

Game Options (gopt) Command

The gameoptions (or gopt) command allows you to view and modify server gameplay settings at runtime without editing configuration files or restarting the server.

Viewing Settings

# Show all game options
gopt

# Show only settings that differ from defaults
gopt nd

Modifying Settings

# Set a specific option
gopt set DecayTime 48
gopt set MaxStructures 150
gopt set ForcePvP true
gopt set DiffAttackStrength Hard
gopt set DiffConstrCraftTime Instant

Available Game Options

Option Default Description
DecayTime 24 Hours before coreless/small structures are removed when unvisited
WipeTime 0 Hours before any unvisited structure is removed (0 = disabled)
ProtectTime 48 Hours of offline protection for player structures
ProtectDelay 300 Seconds before offline protection activates
MaxStructures 200 Maximum structures per playfield (0-255)
AntiGriefDistancePvE 30 Minimum meters between faction bases in PvE
AntiGriefDistancePvP 300 Minimum meters between faction bases in PvP
ForcePvP false Force PvP on all playfields
DiffAmountOfOre Normal Ore deposit abundance (Rich, Normal, Poor)
DiffNumberOfDeposits Normal Deposit frequency (Plenty, Normal, Few)
DiffAttackStrength Medium NPC attack damage (Easy, Medium, Hard)
DiffConstrCraftTime Normal Constructor speed (Faster, Normal, Slower, Instant)

Server Management Commands

These are essential commands for day-to-day server administration, available via the in-game console or Telnet.

# Save and shut down the server (with countdown in minutes, max 15)
saveandexit 5

# List all connected players
plys

# List all active playfield servers
servers

# Regenerate a specific playfield
regenerateplayfield [name]

# View server performance statistics
stats
Server Shutdown: Always use saveandexit [minutes] to safely shut down the server. This triggers an auto-save and gives connected players a warning countdown. Directly killing the server process may result in data loss.

Common Admin Tasks

Dealing with Stuck Players

If a player is stuck in geometry or under a cockpit:

# Player can try this themselves:
detach

# If that fails, teleport them:
tt [player] [x] [y] [z]

# Or as a last resort, kill and respawn:
destroyme

Cleaning Up Abandoned Structures

# List all structures for a faction
gents [factionId]

# Find a specific structure
find "Structure Name"

# Destroy a structure by ID
destroy [entityId]

# Adjust automatic decay timers
gopt set DecayTime 12
gopt set WipeTime 168

Banning and Unbanning Players

# Ban a player (duration examples: 1h, 24h, 7d, permanent)
ban PlayerName 7d

# Unban a player
unban PlayerName

# List all players with special roles or bans
list

Related Articles

Need Help?

If you need further assistance with Empyrion server administration or have questions about specific commands, our support team is ready to help. Submit a support ticket and we will get back to you as soon as possible.


Var denna artikel hjälpsam?

Ready to Get Started?

The servers are booted, select your plan and become our latest satisfied client.