| Port | Protocol | Purpose | |------|----------|---------| | 7777 | UDP | Game client connection | | 15000 | UDP | Steam server query/listing |
Before you begin, ensure your hardware and network can handle the load. subsistence dedicated server
| Command | Effect | |---------|--------| | AdminLogin pass | Gain admin rights | | AdminLogout | Drop admin rights | | AdminKick PlayerName | Kick player | | AdminBan PlayerName | Ban player by name | | AdminUnban PlayerID | Unban by SteamID | | AdminBroadcast Message | Send global message | | AdminSetTimeOfDay 0-23 | Change in-game hour | | AdminSetDayNumber 1 | Set world day count | | AdminGiveItem ItemID 5 | Spawn 5 of item (use Help ItemID to list) | | AdminTeleport X Y Z | Teleport to coordinates | | AdminTeleportToPlayer Name | Teleport to player | | AdminSummonPlayer Name | Pull player to you | | AdminSaveWorld | Force manual save | | AdminShutdown | Graceful shutdown | | Port | Protocol | Purpose | |------|----------|---------|
$source = "C:\subsistence_server\Subsistence\Saved\SaveGames" $dest = "D:\backups\subsistence\$(Get-Date -Format yyyy-MM-dd_HHmm)" Copy-Item -Recurse $source $dest # Keep last 7 days Get-ChildItem D:\backups\subsistence -Directory | Sort-Object CreationTime -Descending | Select-Object -Skip 7 | Remove-Item -Recurse subsistence dedicated server