From 25c022fa1ccc491c0aebbb65d3feb68ecb5e356a Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Fri, 13 Sep 2019 21:19:51 -0400 Subject: [PATCH] add spongevanilla This will probably replace the main SpongeVanilla egg in the panel --- README.md | 3 +- minecraft_java/README.md | 11 +++-- minecraft_java/spongevanilla/README.MD | 10 +++++ .../spongevanilla/egg-sponge-vanilla.json | 45 +++++++++++++++++++ 4 files changed, 65 insertions(+), 4 deletions(-) create mode 100644 minecraft_java/spongevanilla/README.MD create mode 100644 minecraft_java/spongevanilla/egg-sponge-vanilla.json diff --git a/README.md b/README.md index 2ee7c838..a9807274 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,9 @@ If you are reading this it looks like you are looking to add an egg to your serv [Minecraft Java](/minecraft_java/) * [Forge](/minecraft_java/forge/) * [Feed The Beast](/minecraft_java/ftb/) -* [Spigot](/minecraft_java/spigot/) * [Paper](/minecraft_java/paper) +* [Spigot](/minecraft_java/spigot/) +* [SpongeVanilla](/minecraft_java/spongevanilla/) * [Technic](/minecraft_java/technic/) * [VanillaCord](/minecraft_java/vanillacord/) diff --git a/minecraft_java/README.md b/minecraft_java/README.md index 0302be2e..38fd583f 100644 --- a/minecraft_java/README.md +++ b/minecraft_java/README.md @@ -28,6 +28,9 @@ Revelation is a general all-purpose modpack with optimal FPS, server performance ## Paper Currently the default on pterodactyl for many reasons. First being that you don't need to build the jar. +[PaperMC GitHub](https://github.com/PaperMC/Paper) +High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies + ## Spigot A collection of spigot and forked spigot eggs. @@ -35,10 +38,12 @@ A collection of spigot and forked spigot eggs. This is a direct fork of the default spigot service with the added benefit of being able to build the spigot jar. - (It's noted that building the jar is intensive and time consuming) -[PaperMC GitHub](https://github.com/PaperMC/Paper) -High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies +## Sponge -#### Technic Packs +[SpongeVanilla](https://www.spongepowered.org/) +A community-driven open source Minecraft: Java Edition modding platform. + +## Technic Packs [Hexxit](https://www.technicpack.net/modpack/hexxit) Gear up and set forth on a campaign worthy of legend, for Hexxit has been unearthed! diff --git a/minecraft_java/spongevanilla/README.MD b/minecraft_java/spongevanilla/README.MD new file mode 100644 index 00000000..611b3648 --- /dev/null +++ b/minecraft_java/spongevanilla/README.MD @@ -0,0 +1,10 @@ +# SpongeVanilla +A community-driven open source Minecraft: Java Edition modding platform. + +## Server Ports +The minecraft server requires a single port for access (default 25565) but plugins may require extra ports to enabled for the server. + + +| Port | default | +|-------|---------| +| Game | 25565 | \ No newline at end of file diff --git a/minecraft_java/spongevanilla/egg-sponge-vanilla.json b/minecraft_java/spongevanilla/egg-sponge-vanilla.json new file mode 100644 index 00000000..3b129848 --- /dev/null +++ b/minecraft_java/spongevanilla/egg-sponge-vanilla.json @@ -0,0 +1,45 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1" + }, + "exported_at": "2019-09-13T21:18:48-04:00", + "name": "SpongeVanilla", + "author": "parker@parkervcp.com", + "description": "SpongeVanilla is the implementation of the Sponge API on top of Vanilla Minecraft.", + "image": "quay.io\/pterodactyl\/core:java", + "startup": "java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}}", + "config": { + "files": "{\r\n \"server.properties\": {\r\n \"parser\": \"properties\",\r\n \"find\": {\r\n \"server-ip\": \"0.0.0.0\",\r\n \"server-port\": \"{{server.build.default.port}}\",\r\n \"query.port\": \"{{server.build.default.port}}\"\r\n }\r\n }\r\n}", + "startup": "{\r\n \"done\": \")! For help, type \",\r\n \"userInteraction\": [\r\n \"Go to eula.txt for more info.\"\r\n ]\r\n}", + "logs": "{}", + "stop": "stop" + }, + "scripts": { + "installation": { + "script": "#!\/bin\/bash\r\n# spongeVanilla Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y jq curl\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\n\r\n#Adding .jar when not eding by SERVER_JARFILE\r\nif [[ ! ${SERVER_JARFILE} = *\\.jar ]]; then\r\n SERVER_JARFILE=\"${SERVER_JARFILE}.jar\"\r\nfi\r\n\r\n## check spongevanilla version and default to recommended if it's invalid\r\nif [ -z ${SV_VERSION} ] || [ \"$(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla\/downloads\/${SV_VERSION})\" == \"Unknown version\" ]; then\r\n echo -e \"defaulting to recommended\"\r\n SV_VERSION=\"recommended\"\r\nfi\r\n\r\n## handle getting download linsk for sponge\r\nif [ \"${SV_VERSION}\" == \"recommended\" ]; then\r\n echo -e \"using recommended spongevanilla version\"\r\n SV_VERSION=$(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla\/downloads\/recommended | jq -r '.version')\r\n echo -e \"found spongevanilla Version ${SV_VERSION}\"\r\n SV_DL_LINK=$(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla\/downloads\/recommended | jq -r '.artifacts.\"\".url')\r\nelif [ \"${SV_VERSION}\" == \"latest\" ]; then\r\n echo -e \"using latest SpongForge version\"\r\n SV_VERSION=$(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla | jq -r '.buildTypes.stable.latest.version')\r\n echo -e \"found spongevanilla Version ${SV_VERSION}\"\r\nelse\r\n echo -e \"found spongevanilla Version ${SV_VERSION}\"\r\n SV_DL_LINK=$(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla\/downloads\/${SV_VERSION} | jq -r '.artifacts.\"\".url')\r\nfi\r\n\r\nif [ -f ${SERVER_JARFILE} ] && [ $(sha1sum server.jar | awk '{ print $1 }') == $(curl -s https:\/\/dl-api.spongepowered.org\/v1\/org.spongepowered\/spongevanilla\/downloads\/recommended | jq -r '.artifacts.\"\".sha1') ]; then\r\n echo -e \"Already have the correct spongevanilla version\"\r\nelse\r\n echo -e \"Downloading spongevanilla version ${SV_VERSION}\"\r\n echo -e \"running: curl -s ${SV_DL_LINK} -o \/mnt\/server\/mods\/spongevanilla-${SV_VERSION}.jar\"\r\n curl -s ${SV_DL_LINK} -o \/mnt\/server\/${SERVER_JARFILE}\r\nfi\r\n\r\nif [ ! -f server.properties ]; then\r\n echo -e \"Downloading MC server.properties\"\r\n curl -s -o server.properties https:\/\/raw.githubusercontent.com\/parkervcp\/eggs\/master\/minecraft_java\/server.properties\r\nfi\r\n\r\necho -e \"Install for spongevanilla is complete\"", + "container": "debian:stable-slim", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "SpongeVanilla Version", + "description": "Example 1.12.2-7.1.6\r\n\r\nIf the version fails it defaults to recommended", + "env_variable": "SV_VERSION", + "default_value": "recommended", + "user_viewable": 1, + "user_editable": 1, + "rules": "required|string" + }, + { + "name": "Server Jar File", + "description": "The name of the Jarfile to use when running Mod.", + "env_variable": "SERVER_JARFILE", + "default_value": "server.jar", + "user_viewable": 1, + "user_editable": 1, + "rules": "required|regex:\/^([\\w\\d._-]+)(\\.jar)$\/" + } + ] +} \ No newline at end of file