No errors, no nothing. Whenever I run the RustDedicated.exe via my batch script, the server never boots up. It just stays on the terminal and never does anything.
https://prnt.sc/10d4u8q
A copy of my batch script is as follows:
Title NoobIsland 3x Server
:RunRustDedicated
@echo on
RustDedicated.exe -batchmode ^
+server.port 23000 ^
+server.level "Procedural Map" ^
+server.seed 164954860 ^
+server.worldsize 3000 ^
+server.maxplayers 150 ^
+server.url "http://discord.karasworlds.com/" ^
+server.headerimage "https://i.imgur.com/Vr0x7hp.png" ^
+server.identity "myserver" ^
+server.gamemode "vanilla" ^
+rcon.port REDACTED ^
+rcon.password REDACTED^
+rcon.web 1
@echo off
cls
echo Server has stopped. You can close this window now or wait until it restarts.
timeout /t 10
@goto :RunRustDedicated