Generate a Rust server.cfg
Rust's server.cfg is not a settings file but a list of console commands, which confuses anyone who expects the key=value layout used almost everywhere else.
Start from a preset
Visual Settings
server.cfg
Advertisement
The server.cfg format
On each line the command and its argument are separated by a space rather than an equals sign — server.hostname "My Server", not server.hostname="My Server". The equals version does not raise an error; the console just fails to recognise the command and carries on. Booleans are 1 and 0 instead of true and false. Put quotes around values with spaces in them; bare numbers need none.
Advertisement
The mistake that wastes an evening
Your map is defined by server.seed and server.worldsize together, and altering either produces an entirely different world at the next restart. Players' buildings are still in the save, but now they sit in the wrong places on a map that no longer fits them. Settle both before the first wipe and do not touch them until you actually mean to wipe.