Batch file doesn't work properlySolved
I'm running the batch file (RustServer.bat) and it seems like it ignores all the commands inside.
for example - +server.hostname "MakaRust"  doesn't work, the server name is still "My Untitled.."
Do you know why is it happening? I'm running this server on my computer, windows 10.

This is my batch file :
@echo off (Without "@" I get errors for each command line)
:start
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 100
+server.hostname "MakaRust"
+server.description "Welcome to MakaRust, /n
Have fun!"
+server.url "http://yourwebsite.com"
+server.headerimage "https://i.imgur.com/JPQDv8D.jpg"
+server.identity "my_server_identity"
goto start

Thanks a lot
You need to either combine each line with a command/setting or add ^ to the end of each command line except for the last.

Wow you are the best!! Thank you ^^

Locked automatically