1. Can start my rust server without issue using commandline
    C:\Games\Rustserver\RustDedicated.exe -batchmode -nographics +server.ip ## +server.port 28215 -maxplayers 50 +server.identity "Ragonz" +server.maxplayers 50 +server.seed 6738 +datadir"serverdata/" +rcon.ip 88.150.145.86 +rcon.port 28216 -logFile "log.txt"

    But cannot get it to read anything in the config file located
    C:\Games\Rustserver\server\Ragonz\cfg\server.cfg

    Code:
    rcon.port "28216"
    rcon.ip "88.150.145.86"
    rcon.password "####"##Uncomment these variables to activate them##Sets a hostname.
    server.hostname "Test Server"
    server.description "Does this work?"
    server.worldsize "3000"
    rcon.web "1"
    weather.rain "0.3"
    weather.fog "0.3"
    weather.clouds "0.8"
    heli.bulletDamageScale "0.2"
    heli.bulletAccuracy "20"
    ai.move "false"
    ai.think "disable"
    Any ideas?
    Some things are hidden by ## thats not the actual value
     
  2. Wulf

    Wulf Community Admin

    Remove the #comment lines, they will cause it to not load.
     
  3. So
    Code:
    rcon.port "28216"
    rcon.ip "88.150.145.86"
    rcon.password "####"server.hostname "Test Server"
    server.description "Does this work?"
    server.worldsize "3000"
    rcon.web "1"
    weather.rain "0.3"
    weather.fog "0.3"
    weather.clouds "0.8"
    heli.bulletDamageScale "0.2"
    heli.bulletAccuracy "20"
    ai.move "false"
    ai.think "disable"
    ?
     
  4. Wulf

    Wulf Community Admin

    Yes, just one command per line and it should work fine.
     
  5. Not working unfortunately, description/hostname have not changed neither have any of the other parameters.
     
  6. Wulf

    Wulf Community Admin

    The file is most likely not readable still then. Try with just the below:
    Code:
    server.hostname "Test Server"
    server.description "Does this work?"
    server.worldsize "3000"
    rcon.web "1"
    weather.rain "0.3"
    weather.fog "0.3"
    weather.clouds "0.8"
    heli.bulletDamageScale "0.2"
    heli.bulletAccuracy "20"
    ai.move "false"
    ai.think "disable"
    The rcon settings cannot be set via server.cfg. Your server will also show in its log if it is being loaded.