Home / Guides / Palworld Admin Commands
🐾 Palworld · Server Admin Reference

Palworld Admin & Server Commands

Every Palworld admin command that actually exists — authentication, moderation, teleport, server lifecycle, and live settings — plus full RCON and REST API setup. Written for people who'd rather skim than scroll, and checked against the current build so you're not pasting commands that quietly got removed two patches ago.

Verified against the Sakurajima patch · last checked May 2026
Jump to a section
📟 How to open the Palworld admin console
  1. Press Enter in-game to open chat input.
  2. Type /AdminPassword YourAdminPassword to authenticate. The password is whatever you set as AdminPassword= in your PalWorldSettings.ini.
  3. Once authenticated, any command starting with / will run. Type the command, hit Enter, done. You only need to authenticate once per session.
⚠ Case-sensitivity gotcha: Palworld commands are case-sensitive. /Save works; /save does not. Match the capitalization exactly as shown below, or the command silently does nothing. Admin rights last until you disconnect — reconnect and you'll need to re-authenticate.

🔑 Admin Access

The one command that unlocks everything else. Without authenticating, none of the other commands work.

/AdminPassword YourAdminPassword
Grants admin privileges for the current session. The password comes from your server's PalWorldSettings.ini — set AdminPassword=YourValue there before launching. Lost when you disconnect; re-run to re-authenticate.

ℹ️ Player Information

Get a quick read on who's online and what server you're on. Both return text in chat — no UI.

/ShowPlayers
Lists every player currently online with their Name, PlayerUID, and SteamID. Run this first before any moderation command — it's how you grab the SteamID you'll need to target someone. Tip: in-game you can copy a SteamID straight to clipboard by double right-clicking a player in the list.
/Info
Prints server name, version, and current player/Pal metrics. Mostly for confirming you're connected to the right server and on the expected build.

👮 Moderation & Bans

Kick, ban, unban, and inspect the ban list. All of these take a SteamID — pull it from /ShowPlayers output. Bans persist to a BanList.txt file on the server.

/KickPlayer SteamID
Disconnects a player. They can rejoin immediately unless you ban them — use /BanPlayer if you want them gone for good.
/BanPlayer SteamID
Permanently bans a SteamID, persisted to BanList.txt. The player can't rejoin until you run /UnBanPlayer.
/UnBanPlayer SteamID
Removes a SteamID from BanList.txt and re-allows joining. You no longer have to hand-edit the ban file to reverse a ban.
/BanList
Prints the current ban list — the same content as reading BanList.txt directly. Handy for checking whether a SteamID is already banned before re-banning.

📍 Teleportation

Two teleport commands, both targeting a player by SteamID. Useful for rescuing someone stuck in geometry or going to investigate a report. Note: you must be a logged-in player in-game to use these — they don't work from a headless console or steamCMD.

/TeleportToPlayer SteamID
Teleports you to the named player. The right call for going to check on a reported griefer instead of yanking them to you.
/TeleportToMe SteamID
Pulls the named player to your location. Use sparingly — it's disorienting for the player being moved.

🔄 Server Lifecycle

Save the world, broadcast to everyone, and bring the server down — gracefully or hard. The graceful options are almost always the right call on a populated server.

/Save
Force-saves the world to disk. The server autosaves, but always run this before any manual stop or migration to avoid rolling back recent progress.
/Broadcast MessageText
Sends a centered notification to every player. The standard way to announce restarts, events, or rule reminders.
/Shutdown Seconds MessageText
Graceful shutdown with a countdown and broadcast message. Use this 99% of the time. Example: /Shutdown 60 Restart_in_60s. Gives players time to get safe and log out clean.
/DoExit
Hard stop — the server process terminates immediately, with no countdown and no save. Reserved for when /Shutdown hangs or you've got a stuck server. Run /Save first.
Two gotchas with messages: spaces in a /Broadcast or /Shutdown message can get cut off at the first space on some clients and over RCON — use underscores (Restart_in_60s) or wrap the text in quotes depending on your client. And /DoExit never saves first, so pair it with /Save or you lose everything since the last autosave.

⚙️ Live Settings

The /ChangeSettings family edits a few server properties without a restart. Handy for fixing a typo'd server name or rotating the join password on the fly.

/ChangeSettings ServerName "New Name"
Renames the server live, no restart needed. The new name shows in the server browser after the next listing refresh.
/ChangeSettings ServerDescription "Description"
Updates the description shown in the server browser details panel.
/ChangeSettings ServerPassword "secret"
Sets or clears the join password live. Pass an empty string to make the server open. Useful for locking a server mid-incident without kicking everyone via restart.
Important limit: most balance settings — XP rate, capture/tame multipliers, drop rates, day length — are not safely changeable at runtime. Those still require editing PalWorldSettings.ini and restarting the server. /ChangeSettings only covers the handful of properties above.

🔌 RCON Access

RCON is a TCP-socket version of the chat console — it lets external tools and scripts send commands without anyone being in-game. Configure it once in PalWorldSettings.ini:

RCONEnabled=True
RCONPort=25575
AdminPassword=YourAdminPassword

Then connect with any Source RCON client — mcrcon, RCON.io, BattleMetrics, etc. The RCON password is your AdminPassword. Over RCON, drop the leading slash — send ShowPlayers, not /ShowPlayers. Example with mcrcon:

# list online players
mcrcon -H your.server.ip -P 25575 -p YourAdminPassword "ShowPlayers"

# force a save
mcrcon -H your.server.ip -P 25575 -p YourAdminPassword "Save"

# graceful restart with a message
mcrcon -H your.server.ip -P 25575 -p YourAdminPassword "Shutdown 30 \"Hot patch incoming\""
Security: the RCON port is your admin password sitting on an open TCP socket. Firewall port 25575 to trusted IPs only — don't expose it to the open internet, and use a strong AdminPassword since it doubles as your RCON credential.

🌐 REST API

Palworld also exposes an HTTP REST API for automation — useful for dashboards, monitoring (Grafana/Prometheus), and Discord bots. Enable it in PalWorldSettings.ini:

RESTAPIEnabled=True
RESTAPIPort=8212

Authenticate with HTTP Basic auth — username admin, password = your AdminPassword.

EndpointMethodPurpose
/v1/api/infoGETServer name, version, world ID.
/v1/api/playersGETJSON list of online players — name, SteamID, ping, location.
/v1/api/settingsGETEffective server settings.
/v1/api/metricsGETFPS, CPU, memory, uptime — for monitoring dashboards.
/v1/api/announcePOSTBroadcast a message. Body: {"message":"text"}
/v1/api/kickPOSTKick a player. Body: {"userid":"steam_xxx","message":"reason"}
/v1/api/banPOSTBan a player. Body: {"userid":"steam_xxx","message":"reason"}
/v1/api/savePOSTTrigger a world save.
/v1/api/shutdownPOSTGraceful shutdown. Body: {"waittime":30,"message":"text"}
/v1/api/stopPOSTHard stop — equivalent to /DoExit.
Security: the REST API ships disabled for a reason. It's HTTP Basic auth over a plain socket — anyone who can reach port 8212 with your admin password owns the server. Firewall it to trusted IPs, and never expose port 8212 to the public internet.
⚑ "Where's /GiveItem, /SpawnPals, /God, /ResetMap?"
Short answer: they aren't vanilla commands. A lot of older guides list /GiveItem, /SpawnPals, /God, coordinate-based /Teleport, and /ResetMap as built-in — but as of the current patch, item-giving, Pal-spawning, and god mode are not officially supported by the dedicated server. If a command isn't in the sections above, it doesn't exist in the base game.

What does work: server-side mods like AdminEngine or PalDefender (both installed via UE4SS) add custom commands with a different prefix — usually !give, !spawn, !exp and similar. Those require installing the mod on the server first, and they're community tools, not Pocketpair-official. To wipe a world, there's no /ResetMap — you stop the server and delete the save folder. We'd rather tell you that than have you paste a command that silently does nothing.
Other game admin commands
Server commands for other games — in the works

Building the same clean, verified reference for every game that has a dedicated server. The order's driven by what people actually search for.

ARK: Survival Ascended
Rust
Valheim
7 Days to Die
Project Zomboid
Minecraft

Common Palworld admin questions

How do I open the admin console in Palworld?
Press Enter to open chat input, then type /AdminPassword YourAdminPassword to authenticate. Once authenticated, any command starting with / will execute. Note that commands are case-sensitive — /Save works, /save does not.
How do I become an admin on a Palworld server?
Set an AdminPassword value in your server's PalWorldSettings.ini. Then in-game, press Enter and type /AdminPassword your_password to gain admin privileges for that session. Admin rights last until you disconnect — reconnect and you'll need to re-authenticate.
What's the command to kick a player in Palworld?
/KickPlayer SteamID removes a player from the server. Get the SteamID by running /ShowPlayers first — it lists everyone online with their Name, PlayerUID, and SteamID. In-game, you can copy a player's SteamID to clipboard by double right-clicking them in the player list.
Can I give items with a Palworld admin command?
No — there's no vanilla /GiveItem. Item-giving, Pal spawning, and god mode aren't officially supported by the dedicated server as of the current patch. They require a server-side mod like AdminEngine or PalDefender, which add custom !give-style commands. Any guide listing /GiveItem as built-in is out of date.
Does Palworld support RCON?
Yes. Set RCONEnabled=True and RCONPort=25575 in PalWorldSettings.ini, then connect with any Source RCON client such as mcrcon. Over RCON you drop the leading slash — send Save rather than /Save. The RCON password is your AdminPassword. Firewall the port to trusted IPs.
How do I rename my server without restarting?
/ChangeSettings ServerName "New Name" renames the server live. There are matching commands for the description (/ChangeSettings ServerDescription "...") and join password (/ChangeSettings ServerPassword "..."). Most other settings — XP/tame/drop rates — still require editing the INI and restarting.
How do I shut down a Palworld server gracefully?
/Shutdown Seconds MessageText initiates a timed shutdown with a warning broadcast — the right command for planned restarts. /DoExit terminates the server instantly with no warning and no save, so run /Save first if you use it.
How do I reset or wipe the world?
There's no /ResetMap command in the base game. To wipe, stop the server and delete the save folder (back it up first if there's any chance you'll want it). The server generates a fresh world on next launch.
Do these commands work in single-player or co-op?
No — these are dedicated server commands. Single-player and non-dedicated (co-op) sessions don't expose the admin console; there's no PalWorldSettings.ini admin password to authenticate against. For solo play, you'd need third-party trainer software.