diff --git a/README.md b/README.md index 5b591844..f8f094a5 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,7 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Technic](/minecraft/java/technic) * [Tuinity](/minecraft/java/tuinity) * [VanillaCord](/minecraft/java/vanillacord) + * [Mohist](/minecraft/java/mohist) * [Proxies](/minecraft/proxy) Minecraft Server Proxies * [Java](/minecraft/proxy/java) diff --git a/minecraft/README.md b/minecraft/README.md index f2ddf470..6502f2e3 100644 --- a/minecraft/README.md +++ b/minecraft/README.md @@ -23,6 +23,7 @@ It’s set in infinitely-generated worlds of wide open terrain - icy mountains, * [Technic](/minecraft/java/technic) * [Tuinity](/minecraft/java/tuinity) * [VanillaCord](/minecraft/java/vanillacord) +* [Mohist](/minecraft/java/mohist) * [Proxies](/minecraft/proxy) Minecraft Server Proxies * [Java](/minecraft/proxy/java) diff --git a/minecraft/java/README.md b/minecraft/java/README.md index a2359f1f..63a337cc 100644 --- a/minecraft/java/README.md +++ b/minecraft/java/README.md @@ -94,3 +94,7 @@ The official Tekkit Classic modpack. Build factories, automate crafting! ## Tuinity Fork of Paper aimed at improving server performance at high playercounts. [Tuinity GitHub](https://github.com/Spottedleaf/Tuinity) + +## Mohist +Fork of Spigot focused on performance optimizations. +[Mohist Github](https://github.com/Mohist-Community) \ No newline at end of file diff --git a/minecraft/java/mohist/README.MD b/minecraft/java/mohist/README.MD new file mode 100644 index 00000000..48a79d05 --- /dev/null +++ b/minecraft/java/mohist/README.MD @@ -0,0 +1,15 @@ +# Mohist + +Mohist is a Spigot fork that prioritizes performance optimizations. + +## 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 | + +## Server Specific + +Limited to version 1.12.2 (1.16.4 cannot run headless as of 12/6/2020) \ No newline at end of file diff --git a/minecraft/java/mohist/egg-mohist.json b/minecraft/java/mohist/egg-mohist.json new file mode 100644 index 00000000..c21f35de --- /dev/null +++ b/minecraft/java/mohist/egg-mohist.json @@ -0,0 +1,55 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1" + }, + "exported_at": "2020-12-06T02:04:44-08:00", + "name": "Mohist", + "author": "alex.chang-lam@protonmail.com", + "description": "Spigot fork with performance optimizations.", + "features": null, + "image": "quay.io\/pterodactyl\/core:java", + "startup": "java -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}} pause", + "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 }\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# Mohistmc Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n\r\napt update\r\napt install -y curl\r\n\r\ncd \/mnt\/server\r\n\r\ncurl -sSL \"https:\/\/mohistmc.com\/api\/${MINECRAFT_VERSION}\/${BUILD_NUMBER}\/download\" -o ${SERVER_JARFILE}", + "container": "debian:buster-slim", + "entrypoint": "bash" + } + }, + "variables": [ + { + "name": "Minecraft Version", + "description": "The version of minecraft to download. \r\n\r\nInvalid versions will default to 1.12.2.", + "env_variable": "MINECRAFT_VERSION", + "default_value": "1.12.2", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string|max:20" + }, + { + "name": "Server Jar File", + "description": "The name of the server jarfile to run the server with.", + "env_variable": "SERVER_JARFILE", + "default_value": "server.jar", + "user_viewable": true, + "user_editable": false, + "rules": "required|string|max:20" + }, + { + "name": "Build Number", + "description": "The build number for the Mohist release.\r\n\r\nLeave at latest to always get the latest version. Invalid versions will default to latest.", + "env_variable": "BUILD_NUMBER", + "default_value": "latest", + "user_viewable": true, + "user_editable": true, + "rules": "required|string|max:20" + } + ] +} \ No newline at end of file