Settings in .bat file not being usedNot An Issue
@echo off
:start

RustDedicated.exe -batchmode

+server.ip "0.0.0.0"^
+server.port "28015"^
+server.level "Procesdural Map"^
+server.seeds "1800"^
+server.worldsize "4000"^
+server.maxplayers "5"^
+server.hostname "Server is under maintance"^
+server.description "Server is under maintance"^
+server.identity "Server is under maintance"^
+rcon.port "28016"^
+rcon.password "StarMemorial"^
+recon.web "1"^
+server.events "True"^
+server.backup "true"^
+server.tickrate "10"^
+hackablelockedcreate.decayseconds "3600"^
+hackablelockedcrate/requiredhackseconds "300"^
+server.warmuo "False"^
+server.antihack "True"^
+server.log "True"^

@echo.
@echo ******
@echo Starting Server.....
@echo ******
timeout /t 10
@echo. goto start

I got this inside my of my batch file but i don't get my server name plus playerlost dunno why but so far as I know this should be the way how it needs to be 

You're missing a ^ at the end of -batchmode, making the .bat file invalid. In .bat files, the ^ indicates that it should read the next line as well for command-line arguments.
Locked automatically