Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I noticed that when searching for my server (called The Server Name) if I use The Server Name in the search bar my server is filtered out. It doesn't appear in the list. if I use Server Name in the search filter it DOES show up. Dropping the The seems to work for searches.
The server name needs to be in the batch script in quotes. Don't remove them there. But do make sure the password has no quotes around it unless, I think, you want it to have quotes.
I am not running the dedicated server through steam - I am running it from the RunServer.bat script the wiki guided me to create/use. I couldn't get the server to appear in the list by running it out of steam (clicking on it's name in my library/tools).
It sounds like you've done this many times before but just in case - are there any errors in the log file the script produces, and you are keeping the RunServer.bat running? It should be displaying errors or issues (I think) therein. Or the window it produces/shows may indicate issues/errors there too.
AbioticFactorServer-Win64-Shipping.exe -log -newconsole -useperfthreads -NoAsyncLoadingThread -MaxServerPlayers=6 -PORT=7777 -QUERYPORT=27015 -tcp -ServerPassword=yourpassword -SteamServerName="Do Spaces Work?" -WorldSaveName="Cascade"
This has standard command line parsing semantics. It'll be parsed by cmd.exe on Windows and most likely bash on Linux. In this case quoting the arguments serves to ensure they will not see tokenization and will pass to the program's argv stack with any included spaces.
The program will see this similarly to...
Please note, "Do Spaces Work?" might not be a valid server name.