Rust server owner essentials
A starter pack for new Rust admins. The plugin ecosystem runs on Oxide/uMod - install that first, then everything below is a .cs file dropped into your oxide/plugins folder. None of these are us - all credit to the authors linked on each card.
Admin and moderation
Plugins for running a server, not playing one. Get these in before your first players arrive.
Gameplay and quality of life
The plugins players actually notice. Most servers run a subset of these depending on wipe speed and server identity.
server.cfg essentials
Goes in server/<identity>/cfg/server.cfg and runs at startup. Change the hostname, description, seed, and RCON password before going live.
# ── Identity ────────────────────────────────────────────────────────────────── server.hostname "My Rust Server" server.description "Short description shown in the browser" server.headerimage "https://i.imgur.com/yourimage.png" server.url "https://yourwebsite.com" # ── World ────────────────────────────────────────────────────────────────────── server.worldsize 3500 server.seed 12345 server.maxplayers 100 # ── Networking ───────────────────────────────────────────────────────────────── server.tickrate 10 # ── RCON (change the password before going live) ─────────────────────────────── rcon.ip "0.0.0.0" rcon.port 28016 rcon.password "changeme" # ── Performance ──────────────────────────────────────────────────────────────── fps.limit 30 aimanager.ai_dormant true # ── Decay ────────────────────────────────────────────────────────────────────── decay.scale 1.0
server.tickrate - default is 10. Higher values increase CPU load significantly. Most community servers stay at 10.
aimanager.ai_dormant - puts NPC AI to sleep when no players are nearby. Saves CPU on large maps.
decay.scale - 1.0 is vanilla rate. Lower values slow base decay, which matters a lot on low-pop servers where players are offline for days at a time.
Map seeds and community tools
Picking the right seed makes a real difference to player experience. Too many monuments close together, or a coastline that cuts off half the map, and players leave after the first wipe.
Want a Rust server to test plugins on?
Oxide and Carbon install from the panel, with RCON, scheduled wipes and off-site backups with restore. Plans start from the pricing page - no trial for this game yet.