Im having troubles setting up my rust server, ive gotten it to run properly so that me and my friends can join the server but not im trying to set up an rcon tool called rust admin but nothing is working
Batch File Below
----------------------------------
echo off
:start
cd steam
steamcmd.exe +runscript ../update_script.txt
steamcmd.exe +runscript ../update_script.txt
cd ..
cd rustds
RustDedicated.exe -batchmode ^
+server.hostname "My Server Name" +server.port 28015 ^
+server.identity "my_server" ^
+server.seed 1234567 +server.worldsize 1000 +server.maxplayers 50 ^
+rcon.port 28016 + rcon.password "bobby" +rcon.web 1 +rcon.ip 127.0.0.1 +query_port 28016^
-logFile "output.txt" -autoupdate
cd ../
goto start
--------------------------------------------
Like i said im using Rust admin, under server, i put 127.0.0.1 for ip cause the server is local, port is 28015 and the rcon is 28016
Ive tried so many different inputs, like ip 0.0.0.0, my ipv4 and actual ip. ive tried making a new seperate port for the rcon as 28017 but nothing still.
And while looking at console while the server is running i dont even think the rcon is running, ive seen other examples where in their console the server was trying to turn on rcon or it wasnt responding.
this is my first time and im at my wits end