Hey guys,
I currently have 3 rust servers, 2 of them are vanilla and can not run oxide to make them update. As many others I run a prety standard batch script, something like this;
In the first part it will look for updates, after that the actual server will start and the first part will be ignored till it's restarted (if I'm correct). So as soon as an update is released I would have to manually restart the server. Is there a way possible to do this fully automatically? Since all servers that I play on seem to be able to do this. I am looking for a solution for both Windows and Linux.Code:echo off :start color 3 echo Starting rust server... C:\steamcmd\steamcmd.exe +login anonymous +force_install_dir c:\rustserver\ +app_update 258550 +quit RustDedicated.exe -batchmode +server.port 28015 +server.level "Procedural Map" +server.seed 1234 +server.worldsize 4000 +server.maxplayers 10 +server.hostname "Name of Server as Shown on the Client Server List" +server.description "Description shown on server connection window." +server.url "http://yourwebsite.com" +server.headerimage "http://yourwebsite.com/serverimage.jpg" +server.identity "server1" +rcon.port 28016 +rcon.password letmein +rcon.web 1 goto start
Thank you for reading![]()
Automatically update on vanilla?
Discussion in 'Rust Discussion' started by MM | FuckFaCe, Mar 1, 2017.
-
Wulf Community Admin
In order to know when an update is released, you'd have to have some external script monitor either Steam or other sources for updates, then trigger the update process/script on your server.
-