From d81fbe896155341d606f14a2e6c405add1d6c6b6 Mon Sep 17 00:00:00 2001 From: mryoung Date: Fri, 20 Nov 2020 13:22:05 +0100 Subject: [PATCH 1/4] Add Quake Live --- README.md | 1 + steamcmd_servers/quake_live/README.md | 16 ++++ .../quake_live/egg-quake-live.json | 82 +++++++++++++++++++ 3 files changed, 99 insertions(+) create mode 100644 steamcmd_servers/quake_live/README.md create mode 100644 steamcmd_servers/quake_live/egg-quake-live.json diff --git a/README.md b/README.md index 8fcfa050..53932cef 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Squad](/steamcmd_servers/squad/) * [Unturned](/steamcmd_servers/unturned/) * [Unturned](/steamcmd_servers/unturned/unturned/) +* [Quake Live](/steamcmd_servers/quake_live/) [Teeworlds](/teeworlds/) * [teeworlds](/teeworlds/teeworlds/) diff --git a/steamcmd_servers/quake_live/README.md b/steamcmd_servers/quake_live/README.md new file mode 100644 index 00000000..dba53fb5 --- /dev/null +++ b/steamcmd_servers/quake_live/README.md @@ -0,0 +1,16 @@ +# Quake Live +A first-person shooter video game by id Software. It is an updated version of Quake III Arena that was originally designed +as a free-to-play game launched via a web browser plug-in. On September 17, 2014, the game was re-launched as a standalone +title on Steam. + +Quake Live was previously a free-to-play game, with subscription options offering additional arenas, game types and game +server options. As of October 27, 2015, the game is no longer free and must be purchased, and the subscription options +were dropped. + +### Server Ports +Ports required to run the server in a table format. + +| Port | default | +|---------|-----------| +| Game | 27960 UDP | +| Stats | 27960 TCP | diff --git a/steamcmd_servers/quake_live/egg-quake-live.json b/steamcmd_servers/quake_live/egg-quake-live.json new file mode 100644 index 00000000..da7c57f6 --- /dev/null +++ b/steamcmd_servers/quake_live/egg-quake-live.json @@ -0,0 +1,82 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1" + }, + "exported_at": "2020-11-20T13:09:52+01:00", + "name": "Quake Live", + "author": "patz.michael@gmail.com", + "description": "Quake Live is a first-person shooter video game by id Software. It is an updated version of Quake III Arena that was originally designed as a free-to-play game launched via a web browser plug-in. On September 17, 2014, the game was re-launched as a standalone title on Steam.", + "features": null, + "image": "quay.io\/parkervcp\/pterodactyl-images:ubuntu_source", + "startup": ".\/qzeroded.x64 +set net_port \"{{SERVER_PORT}}\" +set sv_hostname \"{{SERVER_NAME}}\" +set sv_serverType \"{{SERVER_TYPE}}\" +sv_maxClients \"{{MAX_CLIENTS}}\" +set g_password \"{{PASSWORD}}\" +sv_fps \"{{FPS}}\"", + "config": { + "files": "{}", + "startup": "{\r\n \"done\": \"zmq stats and rcon passwords updated\",\r\n \"userInteraction\": []\r\n}", + "logs": "{\r\n \"custom\": false,\r\n \"location\": \"logs\/latest.log\"\r\n}", + "stop": "quit" + }, + "scripts": { + "installation": { + "script": "#!\/bin\/bash\r\n# Quake Live Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\napt -y update\r\napt -y --no-install-recommends install curl lib32gcc1 ca-certificates libstdc++6 libz1\r\n\r\ncd \/tmp\r\ncurl -sSL -o steamcmd.tar.gz http:\/\/media.steampowered.com\/installer\/steamcmd_linux.tar.gz\r\n\r\nmkdir -p \/mnt\/server\/steamcmd \/mnt\/server\/logs\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\r\ncd \/mnt\/server\/steamcmd\r\n\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\n\r\nexport HOME=\/mnt\/server\r\n.\/steamcmd.sh +login anonymous +force_install_dir \/mnt\/server +app_update 349090 +quit\r\n\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so", + "container": "ubuntu:18.04", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "ld lib path", + "description": "", + "env_variable": "LD_LIBRARY_PATH", + "default_value": ".\/linux64", + "user_viewable": false, + "user_editable": false, + "rules": "required|string|max:20" + }, + { + "name": "Server Name", + "description": "The Name that will show up in the Serverbrowser", + "env_variable": "SERVER_NAME", + "default_value": "A Quake Live Server", + "user_viewable": true, + "user_editable": true, + "rules": "required|string|max:70" + }, + { + "name": "Server Type", + "description": "0 = Offline, 1 = LAN, 2 = Internet", + "env_variable": "SERVER_TYPE", + "default_value": "2", + "user_viewable": true, + "user_editable": true, + "rules": "required|numeric|max:2" + }, + { + "name": "Max Clients", + "description": "How many players can connect at once", + "env_variable": "MAX_CLIENTS", + "default_value": "8", + "user_viewable": true, + "user_editable": false, + "rules": "required|numeric" + }, + { + "name": "Server Password", + "description": "Set a server-wide password, and stop all users from connecting without it", + "env_variable": "PASSWORD", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:20" + }, + { + "name": "FPS", + "description": "Change how many frames the server runs per second. WARNING: Has not been tested extensively, and will have a direct impact on CPU and network usage!", + "env_variable": "FPS", + "default_value": "40", + "user_viewable": true, + "user_editable": false, + "rules": "required|numeric" + } + ] +} \ No newline at end of file From 44a67a606e5eb54fdc1f74516c7a9fc68c50b9b1 Mon Sep 17 00:00:00 2001 From: mryoung Date: Fri, 20 Nov 2020 14:05:49 +0100 Subject: [PATCH 2/4] Update README.md Edited Readme in steamcmd folder --- steamcmd_servers/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/steamcmd_servers/README.md b/steamcmd_servers/README.md index 6dcac007..7f070120 100644 --- a/steamcmd_servers/README.md +++ b/steamcmd_servers/README.md @@ -78,3 +78,6 @@ This is a collection of servers that use steamcmd to install. ## Unturned * [Unturned](unturned) + +## Quake Live +[Quake Live](quake_live/) From df60f9d0993658e350ff0abff8cbf617cf5ad89e Mon Sep 17 00:00:00 2001 From: mryoung Date: Fri, 20 Nov 2020 14:11:29 +0100 Subject: [PATCH 3/4] Readme Order Corrected the entry to be in line of the alphebetical order --- README.md | 2 +- steamcmd_servers/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 53932cef..16928ec6 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Onset](/steamcmd_servers/onset) * [PixARK](/steamcmd_servers/pixark/) * [Project Zomboid](/steamcmd_servers/project_zomboid/) +* [Quake Live](/steamcmd_servers/quake_live/) * [Rising World](/steamcmd_servers/rising_world) * [Rust Staging Branch](/steamcmd_servers/rust_staging/) * [SCP: Secret Laboratory](/steamcmd_servers/scpsl/) @@ -154,7 +155,6 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Squad](/steamcmd_servers/squad/) * [Unturned](/steamcmd_servers/unturned/) * [Unturned](/steamcmd_servers/unturned/unturned/) -* [Quake Live](/steamcmd_servers/quake_live/) [Teeworlds](/teeworlds/) * [teeworlds](/teeworlds/teeworlds/) diff --git a/steamcmd_servers/README.md b/steamcmd_servers/README.md index 7f070120..347c0455 100644 --- a/steamcmd_servers/README.md +++ b/steamcmd_servers/README.md @@ -46,6 +46,9 @@ This is a collection of servers that use steamcmd to install. ## Project Zomboid [project_zomboid](project_zomboid/) +## Quake Live +[Quake Live](quake_live/) + ## Rising World [rising_world](rising_world/) @@ -78,6 +81,3 @@ This is a collection of servers that use steamcmd to install. ## Unturned * [Unturned](unturned) - -## Quake Live -[Quake Live](quake_live/) From 72d003817eb7c9b9294fca0e1df9d1ce6d011f93 Mon Sep 17 00:00:00 2001 From: mryoung Date: Sun, 22 Nov 2020 22:22:31 +0100 Subject: [PATCH 4/4] Removed Max Players VAR --- steamcmd_servers/quake_live/egg-quake-live.json | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/steamcmd_servers/quake_live/egg-quake-live.json b/steamcmd_servers/quake_live/egg-quake-live.json index da7c57f6..07e4dc75 100644 --- a/steamcmd_servers/quake_live/egg-quake-live.json +++ b/steamcmd_servers/quake_live/egg-quake-live.json @@ -9,7 +9,7 @@ "description": "Quake Live is a first-person shooter video game by id Software. It is an updated version of Quake III Arena that was originally designed as a free-to-play game launched via a web browser plug-in. On September 17, 2014, the game was re-launched as a standalone title on Steam.", "features": null, "image": "quay.io\/parkervcp\/pterodactyl-images:ubuntu_source", - "startup": ".\/qzeroded.x64 +set net_port \"{{SERVER_PORT}}\" +set sv_hostname \"{{SERVER_NAME}}\" +set sv_serverType \"{{SERVER_TYPE}}\" +sv_maxClients \"{{MAX_CLIENTS}}\" +set g_password \"{{PASSWORD}}\" +sv_fps \"{{FPS}}\"", + "startup": ".\/qzeroded.x64 +set net_port \"{{SERVER_PORT}}\" +set sv_hostname \"{{SERVER_NAME}}\" +set sv_serverType \"{{SERVER_TYPE}}\" +set g_password \"{{PASSWORD}}\" +sv_fps \"{{FPS}}\"", "config": { "files": "{}", "startup": "{\r\n \"done\": \"zmq stats and rcon passwords updated\",\r\n \"userInteraction\": []\r\n}", @@ -51,15 +51,6 @@ "user_editable": true, "rules": "required|numeric|max:2" }, - { - "name": "Max Clients", - "description": "How many players can connect at once", - "env_variable": "MAX_CLIENTS", - "default_value": "8", - "user_viewable": true, - "user_editable": false, - "rules": "required|numeric" - }, { "name": "Server Password", "description": "Set a server-wide password, and stop all users from connecting without it",