How can I find or change the rcon my rust server? obs in v1283 version, already tried the more so rcon.password command returns an error stating that the command does not exist ah and was on the island
Solved Changing RCON password?
Discussion in 'Rust Discussion' started by italogt22, Jun 29, 2015.
-
Wulf Community Admin
See the script example at http://oxidemod.org/threads/setting-up-your-own-experimental-rust-server-with-oxide-2.5754/.
-
good could turn on the server with rcon but when I try to enter the same to play'm kicked when I'm using the script:
@echo off
RustDedicated.exe -batchmode +server.port 28015 +rcon.port 28016 +rcon.ip 0.0.0.0 +rcon.password "123456789" -load
but when I'm using this other script can get more normally do not have rcon:
@echo off
RustDedicated.exe -batchmode +server.hostname "Rusteo" +server.identity "Rusteo" +server.secure false -cfg "server\Rusteo\cfg\server.cfg" -
Wulf Community Admin
Combine them.
Code:@RustDedicated.exe -batchmode +server.hostname "Rusteo" +server.identity "Rusteo" +server.secure false +server.port 28015 +rcon.port 28016 +rcon.ip 0.0.0.0 +rcon.password "123456789" -load