[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
howtos:games:conan_exiles [2019/02/21 11:37 (UTC)] – Move and rename from software markandhowtos:games:conan_exiles [2019/02/21 23:54 (UTC)] – [Update the game server files] arfon
Line 84: Line 84:
  
  
-==== Stoping the Game Server ====+==== Stopping the Game Server ====
  
 To stop the game server, all you have to do is CTRL-C in the console/window in which you are running it. To stop the game server, all you have to do is CTRL-C in the console/window in which you are running it.
 +
 +
 +
 +If the server is running in the background (or you need to script stop it):
 +
 +<code>kill -SIGINT $(ps aux | grep ConanSandboxServer | grep -v grep | awk '{print$2}')</code>
  
  
Line 97: Line 103:
  
 ...then restart the server. ...then restart the server.
 +
 +If you are running mods, update them with this:
 +<code>steamcmd.sh +@sSteamCmdForcePlatformType windows +login anonymous +force_install_dir "[TEMPORARY_DOWNLOAD_DIRECTORY]" +workshop_download_item 440900 [MOD_NUMBER] +quit
 +find /home/steam/ConanExilesMods/steamapps/workshop/content/440900/ -type f -name "*.pak" | xargs cp -t [DEDICATED_SERVER_DIRECTORY]/ConanSandbox/Mods/</code>
 +Where: \\
 +[TEMPORARY_DOWNLOAD_DIRECTORY] is a temporary download directory (e.g. /home/steam/ConanExilesMods/) \\
 +[MOD_NUMBER] is the Workshop mod number (e.g. 344356) \\
 +[DEDICATED_SERVER_DIRECTORY] is your dedicated server install directory (e.g. /home/steam/Conan_Exiles/) \\
  
  
 howtos:games:conan_exiles ()