RCON Command Builder
Palworld RCON Command Builder
Generate formatted RCON administration strings and automated Python execution scripts for remote Palworld server management.
Server & Connection Details
Generated Python RCON Script
# Palworld RCON Python Automation Script
import valve.rcon
host = "127.0.0.1"
port = 25575
password = "AdminPassword123"
try:
with valve.rcon.RCON((host, port), password) as rcon:
response = rcon.command("Broadcast Server restarting in 10 minutes!")
print("RCON Response:", response)
except Exception as e:
print("Failed to connect via RCON:", e)