1
0
mirror of https://github.com/parkervcp/eggs.git synced 2024-10-07 16:17:09 +02:00
parkervcp-pterodactyl-eggs/steamcmd_servers/pavlov_vr/egg-pavlov-v-r.json
M1DN1GHT01 2b22a2c04e
Added new variables, fixed the current Libc++
Changed the docker to a working version, added Rcon compatibility.
2021-03-09 19:33:00 -05:00

73 lines
5.5 KiB
JSON

{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v1"
},
"exported_at": "2021-03-09T19:26:38-05:00",
"name": "Pavlov VR Server(s)",
"author": "admin@devil.wtf",
"description": "Pavlov VR Servers",
"image": "quay.io\/pterodactyl\/core:glibc",
"startup": ".\/PavlovServer.sh -PORT={{SERVER_PORT}}",
"config": {
"files": "{\r\n \"Pavlov\/Saved\/Config\/RconSettings.txt\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"Password=\": \"Password={{env.RCON_PASSWORD}}\",\r\n \"Port=\": \"Port={{env.RCON_PORT}}\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"PavlovLog: StartPlay was called\",\r\n \"userInteraction\": []\r\n}",
"logs": "{}",
"stop": "^c"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\r\n# steamcmd Base Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n# Image to install with is 'debian:buster-slim'\r\n##\r\n#\r\n# Variables\r\n# STEAM_USER, STEAM_PASS, STEAM_AUTH - Steam user setup. If a user has 2fa enabled it will most likely fail due to timeout. Leave blank for anon install.\r\n# WINDOWS_INSTALL - if it's a windows server you want to install set to 1\r\n# SRCDS_APPID - steam app id ffound here - https:\/\/developer.valvesoftware.com\/wiki\/Dedicated_Servers_List\r\n# EXTRA_FLAGS - when a server has extra glas for things like beta installs or updates.\r\n#\r\n##\r\napt -y update\r\napt -y --no-install-recommends install gdb curl lib32gcc1 ca-certificates\r\n## just in case someone removed the defaults.\r\nif [ \"${STEAM_USER}\" == \"\" ]; then\r\necho -e \"steam user is not set.\\n\"\r\necho -e \"Using anonymous user.\\n\"\r\nSTEAM_USER=anonymous\r\nSTEAM_PASS=\"\"\r\nSTEAM_AUTH=\"\"\r\nelse\r\necho -e \"user set to ${STEAM_USER}\"\r\nfi\r\n## download and install steamcmd\r\ncd \/tmp\r\nmkdir -p \/mnt\/server\/steamcmd\r\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\r\ncd \/mnt\/server\/steamcmd\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root \/mnt\r\nexport HOME=\/mnt\/server\r\n## install game using steamcmd\r\n.\/steamcmd.sh +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +force_install_dir \/mnt\/server +app_update ${SRCDS_APPID} ${EXTRA_FLAGS} validate +quit ## other flags may be needed depending on install. looking at you cs 1.6\r\n## set up 32 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so\r\n## set up 64 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk64\r\ncp -v linux64\/steamclient.so ..\/.steam\/sdk64\/steamclient.so\r\n## create a symbolic link for loading mods\r\n##cd \/mnt\/server\/Engine\/Binaries\/ThirdParty\/SteamCMD\/Linux\r\n##ln -sf ..\/..\/..\/..\/..\/Steam\/steamapps steamapps\r\n##cd \/mnt\/server\r\nmkdir -p \/mnt\/server\/Pavlov\/Saved\/Logs\r\nmkdir -p \/mnt\/server\/Pavlov\/Saved\/Config\/LinuxServer\r\ncd \/mnt\/server\/Pavlov\/Saved\/Config\/LinuxServer\r\napt install wget -y\r\nif [ ! -f Game.ini ]; then\r\necho -e \"Downloading Pavlov VR Game.ini\"\r\nwget https:\/\/raw.github.com\/TASelwyn\/eggs\/add\/pavlov\/steamcmd_servers\/pavlov_vr\/Game.ini\r\nfi\r\n# Install Dependencies\r\ncd \/mnt\/server\/Pavlov\/Saved\/Config\r\nwget https:\/\/raw.github.com\/TASelwyn\/eggs\/add\/pavlov\/steamcmd_servers\/pavlov_vr\/RconSettings.txt\r\ncd \/\r\necho -e \"Enjoy your new Pavlov Server!)\"",
"container": "debian:buster-slim",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "App ID",
"description": "Pavlov VR steam app id for auto updates. Leave blank to avoid auto update.",
"env_variable": "SRCDS_APPID",
"default_value": "622970",
"user_viewable": 1,
"user_editable": 0,
"rules": "nullable|numeric"
},
{
"name": "Auto-update server",
"description": "This is to enable auto-updating for servers.\r\n\r\nDefault is 0. Set to 1 to update",
"env_variable": "AUTO_UPDATE",
"default_value": "0",
"user_viewable": 1,
"user_editable": 1,
"rules": "required|boolean"
},
{
"name": "Server Type",
"description": "Choose Between Beta or Shack (-beta shack) or (-beta beta_server)",
"env_variable": "EXTRA_FLAGS",
"default_value": "",
"user_viewable": 1,
"user_editable": 0,
"rules": "nullable|numeric"
},
{
"name": "RCON Passowrd",
"description": "Enter a passwords for your RCON Configuration.",
"env_variable": "RCON_PASSWORD",
"default_value": "CHANGE ME",
"user_viewable": 1,
"user_editable": 1,
"rules": "required|string|max:20"
},
{
"name": "RCON Port",
"description": "Port for your RCON Configuration.",
"env_variable": "RCON_PORT",
"default_value": "",
"user_viewable": 1,
"user_editable": 0,
"rules": "required|string|max:20"
}
]
}