1. I have a CFG file with +server.hostname "RustAbyss | Development Server", but for some reason when I run the server it's named "My Untitled Rust Server [Modded]". Any ideas?
     
  2. What's in the log during startup? Would be somewhere to start by checking if the hostname parameter is actually being passed and if so what the value is.
     
  3. remove the + if you have it in the server.cfg file in the cfg folder if you mean the server startup bat file post it here
     
  4. Code:
    @echo off
    cls
    :start
    echo Starting Server - {RustAbyss}...RustDedicated.exe -batchmode -nographics
    +server.ip 0.0.0.0
    +server.port 28015
    +rcon.ip 0.0.0.0
    +rcon.port 28016
    +rcon.password "NOTSHOWINGRCON"
    +server.maxplayers 100
    +server.hostname "RustAbyss | Development Server"
    +server.identity "RustAbyss"
    +server.level "Procedural Map"+server.worldsize 4000
    +server.saveinterval 600
    +server.globalchat true
    +server.description "This is a development server. This means that it's updated more than regular servers, wiped more than regular servers, and down more than regular servers. \n Please don't join this server unless you understand that. If I see you bitching in chat about server restarts I'll ban you because coding makes me irritable as fuck."
    +server.headerimage "http://i.imgur.com/CpORBoc.png"
    +server.url "http://rust.facepunch.com/"echo.
    echo Restarting Server - {RustAbyss}...
    timeout /t 10
    echo.
    goto start
     
  5. Wulf

    Wulf Community Admin

    Pretty sure each of those + settings have to be on the same line.
     
  6. That seemed to work thanks for the help Wulf.