From cb9f4c9254fa8560cbd44d0c55235bdb24218b46 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 06:14:57 -0500 Subject: [PATCH 01/11] Added Hogwarp egg --- game_eggs/hogwarp/egg-hogwarp.json | 112 +++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 game_eggs/hogwarp/egg-hogwarp.json diff --git a/game_eggs/hogwarp/egg-hogwarp.json b/game_eggs/hogwarp/egg-hogwarp.json new file mode 100644 index 00000000..9ec304c2 --- /dev/null +++ b/game_eggs/hogwarp/egg-hogwarp.json @@ -0,0 +1,112 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v2", + "update_url": null + }, + "exported_at": "2023-11-14T05:42:55-05:00", + "name": "Hogwarp", + "author": "imkringle@proton.me", + "description": "A Pterodactyl egg for the Hogwarts Legacy mod Hogwarp - For more info see their Nexus: https:\/\/www.nexusmods.com\/hogwartslegacy\/mods\/1378", + "features": null, + "docker_images": { + "ghcr.io\/parkervcp\/yolks:wine_staging": "ghcr.io\/parkervcp\/yolks:wine_staging" + }, + "file_denylist": [], + "startup": "wine HogWarpServer.exe", + "config": { + "files": "{\r\n \"config.json\": {\r\n \"parser\": \"json\",\r\n \"find\": {\r\n \"ApiKey\": \"{{env.API_KEY}}\",\r\n \"Name\": \"{{env.SERV_NAME}}\",\r\n \"Port\": \"{{server.build.default.port}}\",\r\n \"Description\": \"{{env.SERV_DESC}}\",\r\n \"MaxPlayer\": \"{{env.MAX_PLAYERS}}\",\r\n \"IconUrl\": \"{{env.SERV_ICON}}\"\r\n }\r\n }\r\n}", + "startup": "{\r\n \"done\": \" [HogWarpServer] \"\r\n}", + "logs": "{}", + "stop": "^^C" + }, + "scripts": { + "installation": { + "script": "#Hogwarp Install\r\napt update -y\r\napt install -y curl file unzip\r\n\r\nif [ ! -d \/mnt\/server ]; then\r\n mkdir -p \/mnt\/server\/\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n# Validate link\r\nif [ ! -z \"${DOWNLOAD_URL}\" ]; then \r\n if curl --output \/dev\/null --silent --head --fail ${DOWNLOAD_URL}; then\r\n echo -e \"link is valid. setting download link to ${DOWNLOAD_URL}\"\r\n DOWNLOAD_LINK=${DOWNLOAD_URL}\r\n else \r\n echo -e \"link is invalid closing out\"\r\n exit 2\r\n fi\r\nfi\r\n\r\ncurl -sSL ${DOWNLOAD_LINK} -o ${DOWNLOAD_LINK##*\/}\r\n\r\n# Unpack Server zip\r\nFILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*\/} | cut -d',' -f2 | cut -d' ' -f2)\r\n\r\nif [ \"$FILETYPE\" == \"gzip\" ]; then\r\n tar xzvf ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"Zip\" ]; then\r\n unzip ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"XZ\" ]; then\r\n tar xvf ${DOWNLOAD_LINK##*\/}\r\nelse\r\n echo -e \"unknown filetype. Exiting\"\r\n exit 2 \r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n#Create the Plugins folder\r\nmkdir plugins\/\r\nchmod 777 *\r\n\r\n\r\n## Install End\r\necho \"-----------------------------------------\"\r\necho \"Hogwarp Is Installed!\"\r\necho \"-----------------------------------------\"", + "container": "ghcr.io\/parkervcp\/installers:debian", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "Wine Tricks", + "description": "", + "env_variable": "WINETRICKS_RUN", + "default_value": "", + "user_viewable": false, + "user_editable": false, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Hogwarp API Key", + "description": "A API required to boot - https:\/\/presence.hogwarp.com\/login\r\n- If not set on install it will fail. Set API Key then Reinstall Files", + "env_variable": "API_KEY", + "default_value": "CHANGEME", + "user_viewable": true, + "user_editable": true, + "rules": "required|string", + "field_type": "text" + }, + { + "name": "Server Name", + "description": "A name that displays on the Hogwarp list", + "env_variable": "SERV_NAME", + "default_value": "Ptero Hogwarp Server", + "user_viewable": true, + "user_editable": true, + "rules": "required|string", + "field_type": "text" + }, + { + "name": "WineARCH", + "description": "Arch type for Wine", + "env_variable": "WINEARCH", + "default_value": "win64", + "user_viewable": false, + "user_editable": false, + "rules": "required", + "field_type": "text" + }, + { + "name": "Max Players", + "description": "Max players for a server, this depends on your Patreon level for Hogwarp\r\nhttps:\/\/www.patreon.com\/tiltedphoques - ( 4, 8, 16, No Limit ) In that order.", + "env_variable": "MAX_PLAYERS", + "default_value": "4", + "user_viewable": true, + "user_editable": true, + "rules": "required|integer", + "field_type": "text" + }, + { + "name": "Server Icon URL", + "description": "The icon that displays on Hogwarps multiplayer listing", + "env_variable": "SERV_ICON", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Server Description", + "description": "The description that shows on the Multiplayer list", + "env_variable": "SERV_DESC", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Download URL", + "description": "URL to pull the files from\r\n- Using GDrive for no bandwidth limits", + "env_variable": "DOWNLOAD_URL", + "default_value": "http:\/\/dl.dropboxusercontent.com\/scl\/fi\/cd47ho7mhcvt91glm9q6q\/Hogwarp-Server-Files.zip?rlkey=juq8ru988l1yhuc16cwhx2jho&dl=1", + "user_viewable": false, + "user_editable": false, + "rules": "required|string", + "field_type": "text" + } + ] +} From 4d1910b3133ecc7c62809caf464f701093ad1643 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 06:15:59 -0500 Subject: [PATCH 02/11] Added hogwarp README --- game_eggs/hogwarp/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 game_eggs/hogwarp/README.md diff --git a/game_eggs/hogwarp/README.md b/game_eggs/hogwarp/README.md new file mode 100644 index 00000000..240b0667 --- /dev/null +++ b/game_eggs/hogwarp/README.md @@ -0,0 +1,16 @@ +# HogWarp +HogWarp is a Work In Progress mod that adds Multiplayer functionality to Hogwarts Legacy, similar to FiveM for GTAV + +This Mod requires a API key only obtainable through their Discord, see the Startup Variable **API KEY** for more info. +- Some features of the mod (Public servers / higher player counts) require a Patreon level. See their Patreon here: https://www.patreon.com/tiltedphoques + +## Networking +| Port | default | +|---------|---------| +| Game | 11778 | + +## Hardware Requirements +| Storage | RAM | CPU | +|---------|---------|-----| +| 1.5GB | 250MB | 🥔 | + From 2397fdfd90b61a3a501a67dd3ab3eeb04021919c Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 06:16:52 -0500 Subject: [PATCH 03/11] Update README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ac6a3b72..82d5cebc 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,8 @@ If you are reading this it looks like you are looking to add an egg to your serv * GTA * [GTAC](game_eggs/gta/gtac) +[Hogwarp](game_eggs/hogwarp) + [Kerbal Space Program](game_eggs/ksp) [League Sandbox](game_eggs/leaguesandbox) From 80d25541a93310845bb96c003448e96937fdd0d9 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 06:17:40 -0500 Subject: [PATCH 04/11] Update README.md Oops --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82d5cebc..a8f21827 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,8 @@ If you are reading this it looks like you are looking to add an egg to your serv * GTA * [GTAC](game_eggs/gta/gtac) -[Hogwarp](game_eggs/hogwarp) +* Hogwarts Legacy + * [Hogwarp](game_eggs/hogwarp) [Kerbal Space Program](game_eggs/ksp) From 549a99b37f9c2a1767805b09840b2e4196c2e3e9 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 06:25:12 -0500 Subject: [PATCH 05/11] Update README.md Added to game_egg README --- game_eggs/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game_eggs/README.md b/game_eggs/README.md index 9c8863db..aa7e708f 100644 --- a/game_eggs/README.md +++ b/game_eggs/README.md @@ -53,6 +53,8 @@ * GTA * [GTAC](gta/gtac) +[Hogwarp](hogwarp) + [Kerbal Space Program](ksp) [Los Angeles Crimes](losangelescrimes) From 8946ac858441aa12c375824af57e805e5ed9dba5 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 07:19:00 -0500 Subject: [PATCH 06/11] Fixed format error --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a8f21827..82d5cebc 100644 --- a/README.md +++ b/README.md @@ -154,8 +154,7 @@ If you are reading this it looks like you are looking to add an egg to your serv * GTA * [GTAC](game_eggs/gta/gtac) -* Hogwarts Legacy - * [Hogwarp](game_eggs/hogwarp) +[Hogwarp](game_eggs/hogwarp) [Kerbal Space Program](game_eggs/ksp) From a9080d38505fcbc91ebe4a02221b16240f8845f2 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 08:34:53 -0500 Subject: [PATCH 07/11] Fixed DOWNLOAD_URL Var - Removed Direct download link per PR requirement :) --- game_eggs/hogwarp/egg-hogwarp.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game_eggs/hogwarp/egg-hogwarp.json b/game_eggs/hogwarp/egg-hogwarp.json index 9ec304c2..e35143fc 100644 --- a/game_eggs/hogwarp/egg-hogwarp.json +++ b/game_eggs/hogwarp/egg-hogwarp.json @@ -4,7 +4,7 @@ "version": "PTDL_v2", "update_url": null }, - "exported_at": "2023-11-14T05:42:55-05:00", + "exported_at": "2023-11-14T08:29:20-05:00", "name": "Hogwarp", "author": "imkringle@proton.me", "description": "A Pterodactyl egg for the Hogwarts Legacy mod Hogwarp - For more info see their Nexus: https:\/\/www.nexusmods.com\/hogwartslegacy\/mods\/1378", @@ -100,12 +100,12 @@ }, { "name": "Download URL", - "description": "URL to pull the files from\r\n- Using GDrive for no bandwidth limits", + "description": "URL to pull the files from - These are obtainable in their discord in the #releases channel\r\n- https:\/\/discord.com\/invite\/hogwarp", "env_variable": "DOWNLOAD_URL", - "default_value": "http:\/\/dl.dropboxusercontent.com\/scl\/fi\/cd47ho7mhcvt91glm9q6q\/Hogwarp-Server-Files.zip?rlkey=juq8ru988l1yhuc16cwhx2jho&dl=1", + "default_value": "", "user_viewable": false, "user_editable": false, - "rules": "required|string", + "rules": "string", "field_type": "text" } ] From 3bcff25f8d793b7888c8742d8f5d1b99f5b02064 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:44:53 -0500 Subject: [PATCH 08/11] Fixed Download + Added config to install script --- game_eggs/hogwarp/egg-hogwarp.json | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/game_eggs/hogwarp/egg-hogwarp.json b/game_eggs/hogwarp/egg-hogwarp.json index e35143fc..190340b1 100644 --- a/game_eggs/hogwarp/egg-hogwarp.json +++ b/game_eggs/hogwarp/egg-hogwarp.json @@ -4,13 +4,13 @@ "version": "PTDL_v2", "update_url": null }, - "exported_at": "2023-11-14T08:29:20-05:00", + "exported_at": "2023-11-14T11:03:55-05:00", "name": "Hogwarp", "author": "imkringle@proton.me", "description": "A Pterodactyl egg for the Hogwarts Legacy mod Hogwarp - For more info see their Nexus: https:\/\/www.nexusmods.com\/hogwartslegacy\/mods\/1378", "features": null, "docker_images": { - "ghcr.io\/parkervcp\/yolks:wine_staging": "ghcr.io\/parkervcp\/yolks:wine_staging" + "ghcr.io\/parkervcp\/yolks:wine_latest": "ghcr.io\/parkervcp\/yolks:wine_latest" }, "file_denylist": [], "startup": "wine HogWarpServer.exe", @@ -22,7 +22,7 @@ }, "scripts": { "installation": { - "script": "#Hogwarp Install\r\napt update -y\r\napt install -y curl file unzip\r\n\r\nif [ ! -d \/mnt\/server ]; then\r\n mkdir -p \/mnt\/server\/\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n# Validate link\r\nif [ ! -z \"${DOWNLOAD_URL}\" ]; then \r\n if curl --output \/dev\/null --silent --head --fail ${DOWNLOAD_URL}; then\r\n echo -e \"link is valid. setting download link to ${DOWNLOAD_URL}\"\r\n DOWNLOAD_LINK=${DOWNLOAD_URL}\r\n else \r\n echo -e \"link is invalid closing out\"\r\n exit 2\r\n fi\r\nfi\r\n\r\ncurl -sSL ${DOWNLOAD_LINK} -o ${DOWNLOAD_LINK##*\/}\r\n\r\n# Unpack Server zip\r\nFILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*\/} | cut -d',' -f2 | cut -d' ' -f2)\r\n\r\nif [ \"$FILETYPE\" == \"gzip\" ]; then\r\n tar xzvf ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"Zip\" ]; then\r\n unzip ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"XZ\" ]; then\r\n tar xvf ${DOWNLOAD_LINK##*\/}\r\nelse\r\n echo -e \"unknown filetype. Exiting\"\r\n exit 2 \r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n#Create the Plugins folder\r\nmkdir plugins\/\r\nchmod 777 *\r\n\r\n\r\n## Install End\r\necho \"-----------------------------------------\"\r\necho \"Hogwarp Is Installed!\"\r\necho \"-----------------------------------------\"", + "script": "#Hogwarp Install\r\napt update -y\r\napt install -y curl file unzip\r\n\r\nif [ ! -d \/mnt\/server ]; then\r\n mkdir -p \/mnt\/server\/\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n# Validate link\r\nif [ ! -z \"${DOWNLOAD_URL}\" ]; then \r\n if curl --output \/dev\/null --silent --head --fail ${DOWNLOAD_URL}; then\r\n echo -e \"link is valid. setting download link to ${DOWNLOAD_URL}\"\r\n DOWNLOAD_LINK=${DOWNLOAD_URL}\r\n else \r\n echo -e \"link is invalid closing out\"\r\n exit 2\r\n fi\r\nfi\r\n\r\ncurl -sSL ${DOWNLOAD_LINK} -o ${DOWNLOAD_LINK##*\/}\r\n\r\n# Unpack Server zip\r\nFILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*\/} | cut -d',' -f2 | cut -d' ' -f2)\r\n\r\nif [ \"$FILETYPE\" == \"gzip\" ]; then\r\n tar xzvf ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"Zip\" ]; then\r\n unzip ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"XZ\" ]; then\r\n tar xvf ${DOWNLOAD_LINK##*\/}\r\nelse\r\n echo -e \"unknown filetype. Exiting\"\r\n exit 2 \r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\n#Create the Plugins folder\r\nmkdir plugins\/\r\n\r\n# Check for a config.json, if it is missing; create it\r\nTARGET_FILE=\"config.json\"\r\n\r\nif test -f \"$TARGET_FILE\"; then\r\n echo \"$TARGET_FILE exists. Skipping config install\"\r\nelse\r\n echo \"$TARGET_FILE does not exist. Installing!\"\r\n curl -sSL -o config.json https:\/\/pteropaste.com\/hy2d48dbhtdd\/\r\n echo \"$TARGET_FILE has been installed\"\r\nfi\r\n\r\n\r\n## Install End\r\necho \"-----------------------------------------\"\r\necho \"Hogwarp Is Installed!\"\r\necho \"-----------------------------------------\"", "container": "ghcr.io\/parkervcp\/installers:debian", "entrypoint": "bash" } @@ -100,12 +100,22 @@ }, { "name": "Download URL", - "description": "URL to pull the files from - These are obtainable in their discord in the #releases channel\r\n- https:\/\/discord.com\/invite\/hogwarp", + "description": "URL to pull the files from\r\n- Files can be found in their Discord (https:\/\/discord.com\/invite\/hogwarp). Default URL will pull from there as well", "env_variable": "DOWNLOAD_URL", - "default_value": "", + "default_value": "https:\/\/cdn.discordapp.com\/attachments\/1076580539751993444\/1118295980597575810\/Server.zip", "user_viewable": false, "user_editable": false, - "rules": "string", + "rules": "required|string", + "field_type": "text" + }, + { + "name": "WINEDEBUG", + "description": "", + "env_variable": "WINEDEBUG", + "default_value": "-all", + "user_viewable": false, + "user_editable": false, + "rules": "nullable", "field_type": "text" } ] From 1ba9984593476333a1e78872150165d1ec2e8afb Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:05:09 -0500 Subject: [PATCH 09/11] Plugin compat Information --- game_eggs/hogwarp/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/game_eggs/hogwarp/README.md b/game_eggs/hogwarp/README.md index 240b0667..c0bd8542 100644 --- a/game_eggs/hogwarp/README.md +++ b/game_eggs/hogwarp/README.md @@ -4,7 +4,9 @@ HogWarp is a Work In Progress mod that adds Multiplayer functionality to Hogwart This Mod requires a API key only obtainable through their Discord, see the Startup Variable **API KEY** for more info. - Some features of the mod (Public servers / higher player counts) require a Patreon level. See their Patreon here: https://www.patreon.com/tiltedphoques -## Networking +Plugins as of now **do not work** as it requires waiting on a Winetricks update - [#2150 - WineTricks Dotnet70 Missing](https://github.com/Winetricks/winetricks/issues/2150#issue-1993072450) + +## Server Port | Port | default | |---------|---------| | Game | 11778 | From 96ad2e25fee25bbee895dd56736c07b10d64399d Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Tue, 14 Nov 2023 18:08:57 +0100 Subject: [PATCH 10/11] Update README --- game_eggs/hogwarp/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/game_eggs/hogwarp/README.md b/game_eggs/hogwarp/README.md index c0bd8542..ed4c2c04 100644 --- a/game_eggs/hogwarp/README.md +++ b/game_eggs/hogwarp/README.md @@ -1,10 +1,11 @@ # HogWarp + HogWarp is a Work In Progress mod that adds Multiplayer functionality to Hogwarts Legacy, similar to FiveM for GTAV This Mod requires a API key only obtainable through their Discord, see the Startup Variable **API KEY** for more info. - Some features of the mod (Public servers / higher player counts) require a Patreon level. See their Patreon here: https://www.patreon.com/tiltedphoques -Plugins as of now **do not work** as it requires waiting on a Winetricks update - [#2150 - WineTricks Dotnet70 Missing](https://github.com/Winetricks/winetricks/issues/2150#issue-1993072450) +Plugins as of now **do not work** as it requires waiting on a Winetricks update - [#2150](https://github.com/Winetricks/winetricks/issues/2150#issue-1993072450) ## Server Port | Port | default | @@ -14,5 +15,5 @@ Plugins as of now **do not work** as it requires waiting on a Winetricks update ## Hardware Requirements | Storage | RAM | CPU | |---------|---------|-----| -| 1.5GB | 250MB | 🥔 | +| 1.5GiB | 250MiB | 🥔 | From 40668a8ab13c2c824c750753de8915a6f87418c1 Mon Sep 17 00:00:00 2001 From: Dylan <135805091+ImKringle@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:13:29 -0500 Subject: [PATCH 11/11] Added note for DL File --- game_eggs/hogwarp/egg-hogwarp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game_eggs/hogwarp/egg-hogwarp.json b/game_eggs/hogwarp/egg-hogwarp.json index 190340b1..ae1623e2 100644 --- a/game_eggs/hogwarp/egg-hogwarp.json +++ b/game_eggs/hogwarp/egg-hogwarp.json @@ -4,7 +4,7 @@ "version": "PTDL_v2", "update_url": null }, - "exported_at": "2023-11-14T11:03:55-05:00", + "exported_at": "2023-11-14T12:12:21-05:00", "name": "Hogwarp", "author": "imkringle@proton.me", "description": "A Pterodactyl egg for the Hogwarts Legacy mod Hogwarp - For more info see their Nexus: https:\/\/www.nexusmods.com\/hogwartslegacy\/mods\/1378", @@ -100,7 +100,7 @@ }, { "name": "Download URL", - "description": "URL to pull the files from\r\n- Files can be found in their Discord (https:\/\/discord.com\/invite\/hogwarp). Default URL will pull from there as well", + "description": "URL to pull the files from\r\n- Files can be found in their Discord (https:\/\/discord.com\/invite\/hogwarp). Default URL will pull from there as well\r\n- These files can be outdated! Be sure to check for an update in the event it has a version mismatch with the client.", "env_variable": "DOWNLOAD_URL", "default_value": "https:\/\/cdn.discordapp.com\/attachments\/1076580539751993444\/1118295980597575810\/Server.zip", "user_viewable": false,