Update Game Servers/ARK - Survival Ascended.md

This commit is contained in:
Nicole Rappe
2024-05-07 09:57:28 -06:00
parent 6334e11386
commit ebfebe36e6

View File

@ -23,7 +23,7 @@ There is an issue where if you run a dedicated server, part of that requires API
## SteamCMD Deployment Script ## SteamCMD Deployment Script
You will need to make a folder somewhere on the computer, such as the desktop, and name it something like "ARK Updater", then put the following script into it: You will need to make a folder somewhere on the computer, such as the desktop, and name it something like "ARK Updater", then put the following script into it:
```jsx title="Update_Server.bat" ```jsx title="C:\Users\nicole.rappe\Desktop\ARK_Updater\Update_Server.bat"
@echo off @echo off
set STEAMCMDDIR="C:\SteamCMD\" set STEAMCMDDIR="C:\SteamCMD\"
set SERVERDIR="C:\ASAServer\" set SERVERDIR="C:\ASAServer\"
@ -40,7 +40,7 @@ exit
## Launch Script ## Launch Script
Now you need to configure a launch script to actually start the dedicated server. This can be placed anywhere, but I suggest putting it into `C:\asaserver\ShooterGame\Saved` along with the world save data. Now you need to configure a launch script to actually start the dedicated server. This can be placed anywhere, but I suggest putting it into `C:\asaserver\ShooterGame\Saved` along with the world save data.
```jsx title="Launch_Server.bat" ```jsx title="C:\asaserver\ShooterGame\Saved\Launch_Server.bat"
@echo off @echo off
start C:\asaserver\ShooterGame\Binaries\Win64\ArkAscendedServer.exe ScorchedEarth_WP?listen?SessionName=BunnyLab?Port=7777?QueryPort=27015?ServerPassword=SomethingSecure?ServerAdminPassword=SomethingVerySecure -WinLiveMaxPlayers=50 -log -crossplay-enable-pc -crossplay-enable-wingdk -mods=928548,928621,928597,928818,929543,937546,930684,930404,940022,941697,930851,948051,932365,929420,967786,930494 start C:\asaserver\ShooterGame\Binaries\Win64\ArkAscendedServer.exe ScorchedEarth_WP?listen?SessionName=BunnyLab?Port=7777?QueryPort=27015?ServerPassword=SomethingSecure?ServerAdminPassword=SomethingVerySecure -WinLiveMaxPlayers=50 -log -crossplay-enable-pc -crossplay-enable-wingdk -mods=928548,928621,928597,928818,929543,937546,930684,930404,940022,941697,930851,948051,932365,929420,967786,930494
exit exit