Advertisement
stom66

ARK: arkserver.cfg

Jul 23rd, 2018
993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. ########################################
  2. ######## Custom Server Settings ########
  3. ########################################
  4. # Save this config file with the following naming format:
  5. # [instance].cfg - applies settings to a specific instance
  6.  
  7. #### Server Settings ####
  8.  
  9. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. ip="0.0.0.0"
  11. port="7777"
  12. queryport="27015"
  13. rconport="27020"
  14. maxplayers="16"
  15. map="Ragnarok"
  16. extra_params=" -automanagedmods"
  17.  
  18. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  19. fn_parms(){
  20. parms="\"${map}?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?\"${extra_params}"
  21. }
  22.  
  23.  
  24. #### LinuxGSM Settings ####
  25.  
  26. ## Notification Alerts
  27. # (on|off)
  28.  
  29. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  30. postalert="off"
  31. postdays="7"
  32. posttarget="https://hastebin.com"
  33.  
  34. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  35. discordalert="off"
  36. discordwebhook="webhook"
  37.  
  38. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  39. emailalert="off"
  40. emailfrom=""
  41.  
  42. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  43. iftttalert="off"
  44. ifttttoken="accesstoken"
  45. iftttevent="linuxgsm_alert"
  46.  
  47. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  48. mailgunalert="off"
  49. mailguntoken="accesstoken"
  50. mailgundomain="example.com"
  51. mailgunemailfrom="[email protected]"
  52. mailgunemail="[email protected]"
  53.  
  54. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  55. pushbulletalert="off"
  56. pushbullettoken="accesstoken"
  57. channeltag=""
  58.  
  59. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  60. pushoveralert="off"
  61. pushovertoken="accesstoken"
  62.  
  63. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  64. telegramalert="off"
  65. telegramtoken="accesstoken"
  66. telegramchatid=""
  67.  
  68. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  69. updateonstart="on"
  70.  
  71. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  72. maxbackups="7"
  73. maxbackupdays="30"
  74. stoponbackup="on"
  75.  
  76. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  77. consolelogging="on"
  78. logdays="14"
  79.  
  80. #### LinuxGSM Advanced Settings ####
  81.  
  82. ## SteamCMD Settings
  83. # Server appid
  84. appid="376030"
  85. # Steam App Branch Select
  86. # Allows to opt into the various Steam app branches. Default branch is "".
  87. # Example: "-beta latest_experimental"
  88. branch=""
  89.  
  90. ## LinuxGSM Server Details
  91. # Do not edit
  92. gamename="Custom Ark Server"
  93. engine="unreal4"
  94.  
  95. #### Directories ####
  96. # Edit with care
  97.  
  98. arkStagingDir="${lgsmdir}/staging"
  99.  
  100. ## Server Specific Directories
  101. systemdir="${serverfiles}/ShooterGame"
  102. executabledir="${systemdir}/Binaries/Linux"
  103. executable="./ShooterGameServer"
  104. servercfgdir="${systemdir}/Saved/Config/LinuxServer"
  105. servercfg="GameUserSettings.ini"
  106. servercfgdefault="GameUserSettings.ini"
  107. servercfgfullpath="${servercfgdir}/${servercfg}"
  108.  
  109. ## Backup Directory
  110. backupdir="${lgsmdir}/backup"
  111.  
  112. ## Logging Directories
  113. logdir="${rootdir}/log"
  114. gamelogdir="${systemdir}/Saved/Logs"
  115. lgsmlogdir="${logdir}/script"
  116. consolelogdir="${logdir}/console"
  117. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  118. consolelog="${consolelogdir}/${servicename}-console.log"
  119. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  120. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  121.  
  122. ## Logs Naming
  123. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  124. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement