Advertisement
Guest User

Untitled

a guest
Feb 28th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.61 KB | None | 0 0
  1. <game_config>
  2.   <game_key>beastsofbermuda_win64</game_key>
  3.   <protocol>lgsl</protocol>
  4.   <lgsl_query_name>source</lgsl_query_name>
  5.   <installer>steamcmd</installer>
  6.   <game_name>Beasts of Bermuda</game_name>
  7.   <server_exec_name>BeastsOfBermudaServer.exe</server_exec_name>
  8.   <cli_template>%GAMEMODE% %CONTROL_PASSWORD% %MAP% %SESSION_NAME% %PLAYERS% %IP%%PORT%%QUERY_PORT% -log %PASSWORD%</cli_template>
  9.   <cli_params>
  10.     <cli_param id="MAP" cli_string="-MapName" options="s" />
  11.     <cli_param id="IP" cli_string="?MultiHome=" />
  12.     <cli_param id="PORT" cli_string="?Port=" />
  13.     <cli_param id="PLAYERS" cli_string="-NumPlayers" options="s" />
  14.     <cli_param id="CONTROL_PASSWORD" cli_string="-AdminPassword" options="s" />
  15.   </cli_params>
  16.   <reserve_ports>
  17.     <port type="add" id="QUERY_PORT" cli_string="?QueryPort=">19238</port>
  18.   </reserve_ports>
  19.   <map_list>maplist.txt</map_list>
  20.   <console_log>WindowsServer/BeastsOfBermuda/Saved/Logs/BeastsOfBermuda.log</console_log>
  21.   <exe_location>WindowsServer</exe_location>
  22.   <max_user_amount>32</max_user_amount>
  23.   <mods>
  24.     <mod key="beastsofbermuda">
  25.       <name>none</name>
  26.       <installer_name>882430</installer_name>
  27.       <installer_login>anonymous</installer_login>
  28.     </mod>
  29.   </mods>
  30.   <server_params>
  31.     <param id="SESSION_NAME" key="-SessionName" type="text">
  32.       <option>s</option>
  33.       <caption>Server Name</caption>
  34.       <desc>Consider a rather short name (avoid "My Super Server that really is awesome pls join"). Spacings must be replaced with "_" for the command to be parsed properly. Example: -SessionName Vipe's_dedicated_server. For people seeing your server, it will appear as following: Vipe's dedicated server</desc>
  35.     </param>
  36.     <param id="GAMEMODE" key="-GameMode" type="select">
  37.       <option value="Life_Cycle">Life Cycle</option>
  38.       <option value="Combat">Combat</option>
  39.       <option value="Free_Roam">Free Roam</option>
  40.       <options>s</options>
  41.       <caption>Game Mode</caption>
  42.      </param>
  43.     <param id="PASSWORD" key="-ServerPassword" type="text">
  44.       <option>s</option>
  45.       <caption>Game Password</caption>
  46.       <desc>Leave it blank to open the server publicly</desc>
  47.     </param>
  48.   </server_params>
  49.   <post_install>
  50.         maplist="maplist.txt"
  51.         if [ -s "$maplist" ]
  52.         then
  53.         echo "File $maplist found. OK!"
  54.         else
  55.         echo "File $maplist not found"
  56.         echo "Generating new maplist file in $maplist"
  57.         touch maplist.txt
  58.         echo Ancestral_Plains > maplist.txt
  59.         echo Bloodbath >> maplist.txt
  60.         echo Forest_Island >> maplist.txt
  61.         echo Test_Performance >> maplist.txt
  62.         fi
  63.     </post_install>
  64. </game_config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement