From 8dffb69dccfe0cda6f6bfc1806fc3d77559687d9 Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Fri, 23 Apr 2021 13:35:56 -0400 Subject: [PATCH] add base openarena egg resolves #1105 --- README.md | 5 ++- openarena/openarena/README.md | 12 ++++++++ openarena/openarena/egg-open-arena.json | 41 +++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 openarena/openarena/README.md create mode 100644 openarena/openarena/egg-open-arena.json diff --git a/README.md b/README.md index 78208cc4..5b76641f 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,10 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Cross Platform](/minecraft/proxy/cross_platform) * [GeyserMC](/minecraft/proxy/cross_platform/geyser) * [Waterdog](/minecraft/proxy/cross_platform/waterdog) - + +[OpenArena](/openarena) + * [openarena](/openarena/openarena) + [OpenRA](/openra) * [OpenRA Dune2000](/openra/openra_dune2000) * [OpenRA Red Alert](/openra/openra_red_alert) diff --git a/openarena/openarena/README.md b/openarena/openarena/README.md new file mode 100644 index 00000000..269abf84 --- /dev/null +++ b/openarena/openarena/README.md @@ -0,0 +1,12 @@ +# OpenArena +### From their [site](http://www.openarena.ws) +OpenArena is a community-produced deathmatch FPS based on GPL idTech3 technology. + +There are many game types supported including Free For All, Capture The Flag, Domination, Overload, Harvester, and more. + +### Server Ports +| Port | default | +|---------|---------| +| Game | 27960 | + +#### Mods/Plugins may require ports to be added to the server. diff --git a/openarena/openarena/egg-open-arena.json b/openarena/openarena/egg-open-arena.json new file mode 100644 index 00000000..2376c0e5 --- /dev/null +++ b/openarena/openarena/egg-open-arena.json @@ -0,0 +1,41 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1", + "update_url": null + }, + "exported_at": "2021-04-23T17:30:07+00:00", + "name": "OpenArena", + "author": "parker@parkervcp.com", + "description": "OpenArena is a community-produced deathmatch FPS based on GPL idTech3 technology.\r\n\r\nhttp:\/\/www.openarena.ws\/", + "features": null, + "images": [ + "quay.io\/parkervcp\/pterodactyl-images:base_debian" + ], + "file_denylist": [], + "startup": ".\/oa_ded.x86_64 +set net_port {{SERVER_PORT}} +map {{GAME_MAP}}", + "config": { + "files": "{}", + "startup": "{\r\n \"done\": \"AAS initialized\"\r\n}", + "logs": "{}", + "stop": "^^C" + }, + "scripts": { + "installation": { + "script": "#!\/bin\/bash\r\n# dirty install script for openarena\r\n# will get updated more later\r\n\r\napt update -y\r\napt install -y wget unzip\r\n\r\nif [ ! -d \/mnt\/server\/ ]; then\r\n\tmkdir -p \/mnt\/server\/\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\nwget http:\/\/www.openarena.ws\/request.php?4 -O openarena.zip\r\n\r\nunzip -o openarena.zip openarena-*\/oa_ded.x86_64 openarena-*\/missionpack\/* openarena-*\/baseoa\/*\r\n\r\nmv -f openarena-*\/* \/mnt\/server\/\r\n\r\nrm -rf openarena-*\/ openarena.zip", + "container": "debian:buster-slim", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "Game Map", + "description": "The map to load when the server starts.\r\nSee here for all maps available by default - https:\/\/openarena.fandom.com\/wiki\/Maps", + "env_variable": "GAME_MAP", + "default_value": "aggressor", + "user_viewable": true, + "user_editable": true, + "rules": "required|string" + } + ] +} \ No newline at end of file