1. As my toppic says: global.restart command wont bring the server back online. same for just restart command.
     

    Attached Files:

  2. It did. I've used this command in Timed Execute and it worked perfectly. Now it doesnt.
     
  3. Configuring a Rust server for auto-reboots | Oxide
    And I'm pretty sure this still hasn't changed, since Wulf still recommends for the hoster to set up the actual restarting (see Timed restarts with chat warning? | Oxide)

    The only reason I see why it might have changed for you is because there was an actual restart script present before, but isn't anymore. The restart command doesn't actually restart.
     
  4. Fixed. Thanks sqroot.

    Here is what I had before:
    Code:
    @echo off
    RustDedicated.exe -batchmode -nographics +server.ip 0.0.0.0 +server.port 28015 +server.level "Procedural Map" +server.worldsize 4000 +server.seed 21457845 +server.maxplayers 150 +server.hostname "[RU] AKRust ( X2 | KITS | MAP | HOME | ZLEVEL )" +server.identity "AKRust" +rcon.ip 0.0.0.0 +rcon.port 28016 +rcon.password ... +query_port 28017
    Here is what I have now:
    Code:
    @echo off
    cls
    :startRustDedicated.exe -batchmode -nographics +server.ip 0.0.0.0 +server.port 28015 +server.level "Procedural Map" +server.worldsize 4000 +server.seed 21457845 +server.maxplayers 150 +server.hostname "[RU] AKRust ( X2 | KITS | MAP | HOME | ZLEVEL ) " +server.identity "AKRust" +rcon.ip 0.0.0.0 +rcon.port 28016 +rcon.password ... +query_port 28017@echo.
    @echo Restarting server...
    @echo.
    goto start
    Now when I type restart or global.restart into console the server will shutdown and restart automatically.
     
  5. Wulf

    Wulf Community Admin

    If you had a shared host before, these generally offered what the .bat file you are using now would provide. The 'restart' command with Rust is just the shutdown command with a countdown message. The Rust server has no was to physically restart itself, it'd need something to wrap it or kickstart it after it shuts down.