2022-08-31 03:50:20 +08:00
{
"_comment" : "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO" ,
"meta" : {
2022-12-05 03:37:43 +08:00
"version" : "PTDL_v2" ,
2022-08-31 03:50:20 +08:00
"update_url" : null
} ,
2022-12-05 03:37:43 +08:00
"exported_at" : "2022-12-04T10:01:51-06:00" ,
2022-08-31 06:01:45 +08:00
"name" : "Purpur-Geyser-Floodgate" ,
2022-08-31 03:50:20 +08:00
"author" : "purpur@birdflop.com" ,
"description" : "A drop-in replacement for Paper servers designed for configurability, and new fun and exciting gameplay features, with the addition of GeyserMC and Floodgate" ,
"features" : [
"eula" ,
"java_version" ,
"pid_limit"
] ,
2022-12-05 03:37:43 +08:00
"docker_images" : {
"ghcr.io\/pterodactyl\/yolks:java_17" : "ghcr.io\/pterodactyl\/yolks:java_17" ,
"ghcr.io\/pterodactyl\/yolks:java_16" : "ghcr.io\/pterodactyl\/yolks:java_16" ,
"ghcr.io\/pterodactyl\/yolks:java_11" : "ghcr.io\/pterodactyl\/yolks:java_11" ,
"ghcr.io\/pterodactyl\/yolks:java_8" : "ghcr.io\/pterodactyl\/yolks:java_8"
} ,
2022-08-31 03:50:20 +08:00
"file_denylist" : [ ] ,
2022-08-31 07:34:16 +08:00
"startup" : "java -Xms128M -Xmx{{SERVER_MEMORY}}M -Dterminal.jline=false -Dterminal.ansi=true --add-modules=jdk.incubator.vector -jar {{SERVER_JARFILE}}" ,
2022-08-31 03:50:20 +08:00
"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}" ,
"logs" : "{}" ,
"stop" : "stop"
} ,
"scripts" : {
"installation" : {
2022-12-05 03:37:43 +08:00
"script" : "#!\/bin\/ash\r\n# Paper Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\nPROJECT=purpur\r\n\r\n# Download paths for Geyser and Floodgate. Do not change!!\r\nGEYSER_DOWNLOAD_URL=https:\/\/ci.opencollab.dev\/job\/GeyserMC\/job\/Geyser\/job\/master\/lastSuccessfulBuild\/artifact\/bootstrap\/spigot\/build\/libs\/Geyser-Spigot.jar\r\nFLOODGATE_DOWNLOAD_URL=https:\/\/ci.opencollab.dev\/job\/GeyserMC\/job\/Floodgate\/job\/master\/lastSuccessfulBuild\/artifact\/spigot\/build\/libs\/floodgate-spigot.jar\r\nif [ -n \"${DL_PATH}\" ]; then\r\n\techo -e \"Using supplied download url: ${DL_PATH}\"\r\n\tDOWNLOAD_URL=`eval echo $(echo ${DL_PATH} | sed -e 's\/{{\/${\/g' -e 's\/}}\/}\/g')`\r\nelse\r\n\tVER_EXISTS=`curl -s https:\/\/api.purpurmc.org\/v2\/${PROJECT} | jq -r --arg VERSION $MINECRAFT_VERSION '.versions[] | contains($VERSION)' | grep true`\r\n\tLATEST_VERSION=`curl -s https:\/\/api.purpurmc.org\/v2\/${PROJECT} | jq -r '.versions' | jq -r '.[-1]'`\r\n\r\n\tif [ \"${VER_EXISTS}\" == \"true\" ]; then\r\n\t\techo -e \"Version is valid. Using version ${MINECRAFT_VERSION}\"\r\n\telse\r\n\t\techo -e \"Using the latest ${PROJECT} version\"\r\n\t\tMINECRAFT_VERSION=${LATEST_VERSION}\r\n\tfi\r\n\t\r\n\tBUILD_EXISTS=`curl -s https:\/\/api.purpurmc.org\/v2\/${PROJECT}\/${MINECRAFT_VERSION} | jq -r --arg BUILD ${BUILD_NUMBER} '.builds.all | tostring | contains($BUILD)' | grep true`\r\n\tLATEST_BUILD=`curl -s https:\/\/api.purpurmc.org\/v2\/${PROJECT}\/${MINECRAFT_VERSION} | jq -r '.builds.latest'`\r\n\t\r\n\tif [ \"${BUILD_EXISTS}\" == \"true\" ]; then\r\n\t\techo -e \"Build is valid for version ${MINECRAFT_VERSION}. Using build ${BUILD_NUMBER}\"\r\n\telse\r\n\t\techo -e \"Using the latest ${PROJECT} build for version ${MINECRAFT_VERSION}\"\r\n\t\tBUILD_NUMBER=${LATEST_BUILD}\r\n\tfi\r\n\t\r\n\tJAR_NAME=${PROJECT}-${MINECRAFT_VERSION}-${BUILD_NUMBER}.jar\r\n\t\r\n\techo \"Version being downloaded\"\r\n\techo -e \"MC Version: ${MINECRAFT_VERSION}\"\r\n\techo -e \"Build: ${BUILD_NUMBER}\"\r\n\techo -e \"JAR Name of Build: ${JAR_NAME}\"\r\n\tDOWNLOAD_URL=https:\/\/api.purpurmc.org\/v2\/${PROJECT}\/${MINECRAFT_VERSION}\/${BUILD_NUMBER}\/download\r\nfi\r\n\r\ncd \/mnt\/server\r\n\r\necho -e \"Downloading the requested purpur buid with curl -o ${SERVER_JARFILE} ${DOWNLOAD_URL}\"\r\n\r\nif [ -f ${SERVER_JARFILE} ]; then\r\n\tmv ${SERVER_JARFILE} ${SERVER_JARFILE}.old\r\nfi\r\nmkdir -p \/mnt\/server\/plugins\r\ncurl -o ${SERVER_JARFILE} ${DOWNLOAD_URL}\r\n\r\necho -e \"Downloading last successful build with curl -o plugins\/geyser-spigot ${GEYSER_DOWNLOAD_URL}\"\r\ncurl -o plugins\/geyser-spigot.jar ${GEYSER_DOWNLOAD_URL}\r\n\r\necho -e \"Downloading last successful build with curl -o plugins\/floodgate-spigot.jar ${FLOODGATE_DOWNLOAD_URL}\"\r\ncurl -o plugins\/floodgate-spigot.jar ${FLOODGATE_DOWNLOAD_URL}\r\n\r\nif [ ! -f server.properties ]; then\r\n\techo -e \"Downloading MC server.properties\"\r\n\tcurl -o server.properties https:\/\/raw.githubusercontent.com\/parkervcp\/eggs\/master\/minecraft\/java\/server.properties\r\nfi\r\necho -e \"Installation Finished\"" ,
2022-08-31 03:50:20 +08:00
"container" : "ghcr.io\/pterodactyl\/installers:alpine" ,
"entrypoint" : "ash"
}
} ,
"variables" : [
{
"name" : "Minecraft Version" ,
"description" : "The version of Minecraft to download. \r\n\r\nLeave at latest to always get the latest version. Invalid versions will default to latest." ,
"env_variable" : "MINECRAFT_VERSION" ,
"default_value" : "latest" ,
"user_viewable" : true ,
"user_editable" : true ,
2022-12-05 03:37:43 +08:00
"rules" : "required|string|max:20" ,
"field_type" : "text"
2022-08-31 03:50:20 +08:00
} ,
{
"name" : "Server Jar File" ,
"description" : "The name of the .jar file to run the server with." ,
"env_variable" : "SERVER_JARFILE" ,
"default_value" : "server.jar" ,
"user_viewable" : true ,
"user_editable" : true ,
2022-12-05 03:37:43 +08:00
"rules" : "required|regex:\/^([\\w\\d._-]+)(\\.jar)$\/|max:80" ,
"field_type" : "text"
2022-08-31 03:50:20 +08:00
} ,
{
"name" : "Build Number" ,
2022-08-31 06:01:45 +08:00
"description" : "The build number for the Purpur release.\r\n\r\nLeave at latest to always get the latest version. Invalid versions will default to latest-stable.\r\n\r\nAccepted values: 'latest-stable' 'latest-successful'" ,
2022-08-31 03:50:20 +08:00
"env_variable" : "BUILD_NUMBER" ,
"default_value" : "latest" ,
"user_viewable" : true ,
"user_editable" : true ,
2022-12-05 03:37:43 +08:00
"rules" : "required|string|max:20" ,
"field_type" : "text"
2022-08-31 03:50:20 +08:00
}
]
}