Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
* [Palworld](palworld)
* [Pavlov VR](pavlov_vr)
* [PixARK](pixark)
* [Plains Of Pain](plains_of_pain)
* [Portal Knights](portal_knights)
* [Post Scriptum](post_scriptum)
* [Project Zomboid](project_zomboid)
Expand Down
20 changes: 20 additions & 0 deletions plains_of_pain/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Plains Of Pain

Survive a brutal open world alone or with friends. Explore a procedural wasteland scorched by chaos. Build and defend your base, trade for what you need, complete deadly quests, and fight to claim faction outposts before someone else does.

## Server Ports

Plains of Pain requires 2 ports

| Port | default |
|-------|---------|
| Game | 7777 |
| Query | 27016 |

# Resources

- 4 GB RAM and 2 CPUs for 10 players
- 8 GB RAM and 4-6 CPUs for 50 players
- 16 GB RAM, 8-12 CPUs for 100 players
- 32 GB RAM, 16 CPUs for 200 players

156 changes: 156 additions & 0 deletions plains_of_pain/egg-plains-of-pain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL",
"meta": {
"version": "PLCN_v3",
"update_url": null
},
"exported_at": "2025-11-15T12:26:36+00:00",
"name": "Plains of Pain",
"author": "quinten@pelican.dev",
"uuid": "aee2951a-4ae4-4e71-9ec9-64c525711145",
"description": "Survive a brutal open world alone or with friends. Explore a procedural wasteland scorched by chaos. Build and defend your base, trade for what you need, complete deadly quests, and fight to claim faction outposts before someone else does. ",
"image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQIAJQAlAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/wAALCAAgACABAREA/8QAGQAAAgMBAAAAAAAAAAAAAAAABQcCAwQG/8QAKhAAAQMDBAEDAwUAAAAAAAAAAQIDBAUGEQAHEiETMUGRFSJxMlFhYoH/2gAIAQEAAD8A6Ky7Ot027TnU0OnFbkZvmtcZClKPEZySns5HzoPV63tpTam9CqMSG5JiuqSrEEuBKznkOXHvGT+D+NW0q59t6xVYdOjR4apTqy2wHafxHIjGAopwMgAfA0Vvu0qKLMrgYpcFtYhvLQvwJylQQohQOCcjPr66zVu6G7Q2wgSQ6lya5FbYi5SE8nCj9WASMAAq/b0Ge9KfaLbZG4TU2r1yZJap6Hi0lDKh5HV4ClEqIOB9w9uyT6Y1Hd3bVG3yYVXosyS7TVvBopeI8jLmCpJCgB19p7wCCPfOmpBu1F1bS1Sf2ufFiOtymm1BB8iUE59sA9K+R3jWSt2ii6dqqTHQFuVKBFbcjLWnipSggBSMf2HX5AOlls9uamwUS6RWor71Odd8qFs45trwAeiQCCAPfIIPrnU939yBf6YdIo8R5imtOh5bj2ObisFI6BIAAJ6ySSfbGmlbtqt2htfVULZC58mK4/JBUEknxnCMkEdDrvIySffV9jXpQVWtSUOVmmtSG4bIcaVJQCghCcggn20BqtvbaT6pImzZ8Zp+W8pSkiaEJUvsqITnrJBP8/7rRTrW25pdShTmp0bzNL8rIcngpKkgHOM94yD8aO3ldlCdtWrD6vBUDGcAAfTyKuKsADIOcjoa/9k=",
"tags": [
"steam_disk_space"
],
"features": [],
"docker_images": {
"SteamCMD Debian": "ghcr.io/parkervcp/steamcmd:debian",
"SteamCMD Ubuntu": "ghcr.io/parkervcp/steamcmd:ubuntu"
},
"file_denylist": [],
"startup_commands": {
"Default": "./PlainsOfPain.x86_64 -nographics -batchmode -ignorecompilererror -servername \"{{SERVER_NAME}}\" -maxPlayers {{MAX_PLAYERS}} -port {{SERVER_PORT}} -queryPort {{QUERY_PORT}} -difficulty {{DIFFICULTY}} -worldSize {{WORLD_SIZE}} -cc -password {{SERVER_PASSWORD}}"
},
"config": {
"files": "{}",
"startup": "{\n \"done\": \"Set Game State: RUNNING\"\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": "#!/bin/bash\n# steamcmd Base Installation Script\n#\n# Server Files: /mnt/server\n# Image to install with is 'ghcr.io/parkervcp/installers:debian'\n\n\n# Install packages. Default packages below are not required if using our existing install image thus speeding up the install process.\n#apt -y update\n#apt -y --no-install-recommends install curl lib32gcc-s1 ca-certificates\n\n## just in case someone removed the defaults.\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\n echo -e \"steam user is not set.\\n\"\n echo -e \"Using anonymous user.\\n\"\n STEAM_USER=anonymous\n STEAM_PASS=\"\"\n STEAM_AUTH=\"\"\nelse\n echo -e \"user set to ${STEAM_USER}\"\nfi\n\n## download and install steamcmd\ncd /tmp\nmkdir -p /mnt/server/steamcmd\ncurl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz\ntar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd\nmkdir -p /mnt/server/steamapps # Fix steamcmd disk write error when this folder is missing\ncd /mnt/server/steamcmd\n\n# SteamCMD fails otherwise for some reason, even running as root.\n# This is changed at the end of the install process anyways.\nchown -R root:root /mnt\nexport HOME=/mnt/server\n\n## install game using steamcmd\n./steamcmd.sh +force_install_dir /mnt/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} $( [[ -z ${SRCDS_BETAID} ]] || printf %s \"-beta ${SRCDS_BETAID}\" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s \"-betapassword ${SRCDS_BETAPASS}\" ) ${INSTALL_FLAGS} validate +quit ## other flags may be needed depending on install. looking at you cs 1.6\n\n## set up 32 bit libraries\nmkdir -p /mnt/server/.steam/sdk32\ncp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so\n\n## set up 64 bit libraries\nmkdir -p /mnt/server/.steam/sdk64\ncp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so\n\n## add below your custom commands if needed\n\n## install end\necho \"-----------------------------------------\"\necho \"Installation completed...\"\necho \"-----------------------------------------\"",
"container": "ghcr.io/pelican-eggs/installers:debian",
"entrypoint": "bash"
}
},
"variables": [
{
"sort": 3,
"name": "Auto Update",
"description": "Auto update the server on startup",
"env_variable": "AUTO_UPDATE",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": [
"boolean"
]
},
{
"sort": 7,
"name": "Difficulty",
"description": "0 = Tourist\n1 = Rookies\n2 = True Wastelander\n3 = Veteran\n4 = Overlord",
"env_variable": "DIFFICULTY",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": [
"required",
"in:0,1,2,3,4"
]
},
{
"sort": 5,
"name": "Max Players",
"description": "The max amount of players that can join at once",
"env_variable": "MAX_PLAYERS",
"default_value": "10",
"user_viewable": true,
"user_editable": true,
"rules": [
"numeric",
"between:1,200"
]
},
{
"sort": 6,
"name": "Query Port",
"description": "",
"env_variable": "QUERY_PORT",
"default_value": "27016",
"user_viewable": false,
"user_editable": false,
"rules": [
"required",
"numeric",
"between:1024,65535"
]
},
{
"sort": 4,
"name": "Server Name",
"description": "This name will appear in the server list in the game",
"env_variable": "SERVER_NAME",
"default_value": "My Server",
"user_viewable": true,
"user_editable": true,
"rules": [
"required",
"string"
]
},
{
"sort": 9,
"name": "Server Password",
"description": "If presents, protects server with password",
"env_variable": "SERVER_PASSWORD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": [
"nullable",
"alpha_dash"
]
},
{
"sort": 1,
"name": "App ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "2227360",
"user_viewable": false,
"user_editable": false,
"rules": [
"required",
"in:2227360"
]
},
{
"sort": 2,
"name": "Beta ID",
"description": "Beta branch of a steam app. Leave blank to install normal branch",
"env_variable": "SRCDS_BETAID",
"default_value": "",
"user_viewable": false,
"user_editable": false,
"rules": [
"nullable"
]
},
{
"sort": 8,
"name": "World Size",
"description": "11 = S\n21 = M\n31 = L\n41 = XL\n51 = XXL",
"env_variable": "WORLD_SIZE",
"default_value": "21",
"user_viewable": true,
"user_editable": true,
"rules": [
"required",
"in:11,21,31,41,51"
]
}
]
}
123 changes: 123 additions & 0 deletions plains_of_pain/pterodactyl-egg-plains-of-pain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2025-11-15T12:26:36+00:00",
"name": "Plains of Pain",
"author": "quinten@pelican.dev",
"description": "Survive a brutal open world alone or with friends. Explore a procedural wasteland scorched by chaos. Build and defend your base, trade for what you need, complete deadly quests, and fight to claim faction outposts before someone else does. ",
"features": null,
"docker_images": {
"SteamCMD Debian": "ghcr.io\/parkervcp\/steamcmd:debian",
"SteamCMD Ubuntu": "ghcr.io\/parkervcp\/steamcmd:ubuntu"
},
"file_denylist": [],
"startup": ".\/PlainsOfPain.x86_64 -nographics -batchmode -ignorecompilererror -servername \"{{SERVER_NAME}}\" -maxPlayers {{MAX_PLAYERS}} -port {{SERVER_PORT}} -queryPort {{QUERY_PORT}} -difficulty {{DIFFICULTY}} -worldSize {{WORLD_SIZE}} -cc -password {{SERVER_PASSWORD}}",
"config": {
"files": "{}",
"startup": "{\n \"done\": \"Set Game State: RUNNING\"\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\n# steamcmd Base Installation Script\n#\n# Server Files: \/mnt\/server\n# Image to install with is 'ghcr.io\/parkervcp\/installers:debian'\n\n\n# Install packages. Default packages below are not required if using our existing install image thus speeding up the install process.\n#apt -y update\n#apt -y --no-install-recommends install curl lib32gcc-s1 ca-certificates\n\n## just in case someone removed the defaults.\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\n echo -e \"steam user is not set.\\n\"\n echo -e \"Using anonymous user.\\n\"\n STEAM_USER=anonymous\n STEAM_PASS=\"\"\n STEAM_AUTH=\"\"\nelse\n echo -e \"user set to ${STEAM_USER}\"\nfi\n\n## download and install steamcmd\ncd \/tmp\nmkdir -p \/mnt\/server\/steamcmd\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\nmkdir -p \/mnt\/server\/steamapps # Fix steamcmd disk write error when this folder is missing\ncd \/mnt\/server\/steamcmd\n\n# SteamCMD fails otherwise for some reason, even running as root.\n# This is changed at the end of the install process anyways.\nchown -R root:root \/mnt\nexport HOME=\/mnt\/server\n\n## install game using steamcmd\n.\/steamcmd.sh +force_install_dir \/mnt\/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} $( [[ -z ${SRCDS_BETAID} ]] || printf %s \"-beta ${SRCDS_BETAID}\" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s \"-betapassword ${SRCDS_BETAPASS}\" ) ${INSTALL_FLAGS} validate +quit ## other flags may be needed depending on install. looking at you cs 1.6\n\n## set up 32 bit libraries\nmkdir -p \/mnt\/server\/.steam\/sdk32\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so\n\n## set up 64 bit libraries\nmkdir -p \/mnt\/server\/.steam\/sdk64\ncp -v linux64\/steamclient.so ..\/.steam\/sdk64\/steamclient.so\n\n## add below your custom commands if needed\n\n## install end\necho \"-----------------------------------------\"\necho \"Installation completed...\"\necho \"-----------------------------------------\"",
"container": "ghcr.io\/pelican-eggs\/installers:debian",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Auto Update",
"description": "Auto update the server on startup",
"env_variable": "AUTO_UPDATE",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "boolean",
"field_type": "text"
},
{
"name": "Difficulty",
"description": "0 = Tourist\n1 = Rookies\n2 = True Wastelander\n3 = Veteran\n4 = Overlord",
"env_variable": "DIFFICULTY",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "required|in:0,1,2,3,4",
"field_type": "text"
},
{
"name": "Max Players",
"description": "The max amount of players that can join at once",
"env_variable": "MAX_PLAYERS",
"default_value": "10",
"user_viewable": true,
"user_editable": true,
"rules": "numeric|between:1,200",
"field_type": "text"
},
{
"name": "Query Port",
"description": "",
"env_variable": "QUERY_PORT",
"default_value": "27016",
"user_viewable": false,
"user_editable": false,
"rules": "required|numeric|between:1024,65535",
"field_type": "text"
},
{
"name": "Server Name",
"description": "This name will appear in the server list in the game",
"env_variable": "SERVER_NAME",
"default_value": "My Server",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "Server Password",
"description": "If presents, protects server with password",
"env_variable": "SERVER_PASSWORD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|alpha_dash",
"field_type": "text"
},
{
"name": "App ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "2227360",
"user_viewable": false,
"user_editable": false,
"rules": "required|in:2227360",
"field_type": "text"
},
{
"name": "Beta ID",
"description": "Beta branch of a steam app. Leave blank to install normal branch",
"env_variable": "SRCDS_BETAID",
"default_value": "",
"user_viewable": false,
"user_editable": false,
"rules": "nullable",
"field_type": "text"
},
{
"name": "World Size",
"description": "11 = S\n21 = M\n31 = L\n41 = XL\n51 = XXL",
"env_variable": "WORLD_SIZE",
"default_value": "21",
"user_viewable": true,
"user_editable": true,
"rules": "required|in:11,21,31,41,51",
"field_type": "text"
}
]
}