refactor: move games to their own folder
This commit is contained in:
12
game_eggs/minecraft/java/cuberite/README.md
Normal file
12
game_eggs/minecraft/java/cuberite/README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# Cuberite
|
||||
|
||||
A lightweight, fast and extensible game server for Minecraft
|
||||
|
||||
## 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 |
|
||||
| WebAdmin | 8080 |
|
||||
55
game_eggs/minecraft/java/cuberite/egg-cuberite.json
Normal file
55
game_eggs/minecraft/java/cuberite/egg-cuberite.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
|
||||
"meta": {
|
||||
"version": "PTDL_v1"
|
||||
},
|
||||
"exported_at": "2020-12-08T17:25:20-08:00",
|
||||
"name": "Cuberite",
|
||||
"author": "parker@parkervcp.com",
|
||||
"description": "A lightweight, fast and extensible game server for Minecraft",
|
||||
"features": null,
|
||||
"image": "quay.io\/parkervcp\/pterodactyl-images:base_debian",
|
||||
"startup": ".\/Cuberite",
|
||||
"config": {
|
||||
"files": "{\r\n \"settings.ini\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"Server.Ports\": \"{{server.build.default.port}}\",\r\n \"Server.Description\": \"{{server.build.env.SERV_DESC}}\"\r\n }\r\n },\r\n \"webadmin.ini\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"User:admin.Password\": \"{{server.build.env.ADMIN_PASS}}\",\r\n \"WebAdmin.Ports\": \"{{server.build.env.WEB_PORT}}\"\r\n }\r\n }\r\n}",
|
||||
"startup": "{\r\n \"done\": \"Startup complete\"\r\n}",
|
||||
"logs": "{}",
|
||||
"stop": "stop"
|
||||
},
|
||||
"scripts": {
|
||||
"installation": {
|
||||
"script": "#!\/bin\/ash\r\n# Cuberite\r\n#\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y wget\r\n\r\ncd \/mnt\/server\r\n\r\nwget https:\/\/download.cuberite.org\/linux-x86_64\/Cuberite.tar.gz\r\n\r\ntar -xzf Cuberite.tar.gz",
|
||||
"container": "debian:buster-slim",
|
||||
"entrypoint": "bash"
|
||||
}
|
||||
},
|
||||
"variables": [
|
||||
{
|
||||
"name": "Server Description",
|
||||
"description": "Server Description",
|
||||
"env_variable": "SERV_DESC",
|
||||
"default_value": "Cuberite on Pterodactyl!",
|
||||
"user_viewable": true,
|
||||
"user_editable": true,
|
||||
"rules": "nullable|string"
|
||||
},
|
||||
{
|
||||
"name": "Admin Password",
|
||||
"description": "The password for the webadmin panel 'admin' user",
|
||||
"env_variable": "ADMIN_PASS",
|
||||
"default_value": "ChangeMe",
|
||||
"user_viewable": true,
|
||||
"user_editable": true,
|
||||
"rules": "nullable|string"
|
||||
},
|
||||
{
|
||||
"name": "WebAdmin Port",
|
||||
"description": "Port for the cuberite webadmin panel.",
|
||||
"env_variable": "WEB_PORT",
|
||||
"default_value": "8080",
|
||||
"user_viewable": true,
|
||||
"user_editable": false,
|
||||
"rules": "required|integer|between:1,65535"
|
||||
}
|
||||
]
|
||||
}
|
||||
52
game_eggs/minecraft/java/cuberite/settings.ini
Normal file
52
game_eggs/minecraft/java/cuberite/settings.ini
Normal file
@@ -0,0 +1,52 @@
|
||||
; This is the main server configuration
|
||||
; Most of the settings here can be configured using the webadmin interface, if enabled in webadmin.ini
|
||||
|
||||
[Authentication]
|
||||
Authenticate=1
|
||||
AllowBungeeCord=0
|
||||
Server=sessionserver.mojang.com
|
||||
Address=/session/minecraft/hasJoined?username=%USERNAME%&serverId=%SERVERID%
|
||||
|
||||
[MojangAPI]
|
||||
NameToUUIDServer=api.mojang.com
|
||||
NameToUUIDAddress=/profiles/minecraft
|
||||
UUIDToProfileServer=sessionserver.mojang.com
|
||||
UUIDToProfileAddress=/session/minecraft/profile/%UUID%?unsigned=false
|
||||
|
||||
[Server]
|
||||
Description=Cuberite - in C++!
|
||||
ShutdownMessage=Server shutdown
|
||||
MaxPlayers=100
|
||||
HardcoreEnabled=0
|
||||
AllowMultiLogin=0
|
||||
Ports=25565
|
||||
AllowMultiWorldTabCompletion=1
|
||||
DefaultViewDistance=10
|
||||
|
||||
[RCON]
|
||||
Enabled=0
|
||||
|
||||
[AntiCheat]
|
||||
LimitPlayerBlockChanges=1
|
||||
|
||||
[PlayerData]
|
||||
LoadOfflinePlayerData=0
|
||||
LoadNamedPlayerData=1
|
||||
|
||||
[Worlds]
|
||||
DefaultWorld=world
|
||||
World=world_nether
|
||||
World=world_the_end
|
||||
|
||||
[WorldPaths]
|
||||
world=world
|
||||
world_nether=world_nether
|
||||
world_the_end=world_the_end
|
||||
|
||||
[Plugins]
|
||||
Plugin=Core
|
||||
Plugin=ChatLog
|
||||
|
||||
[DeadlockDetect]
|
||||
Enabled=1
|
||||
IntervalSec=20
|
||||
14
game_eggs/minecraft/java/cuberite/webadmin.ini
Normal file
14
game_eggs/minecraft/java/cuberite/webadmin.ini
Normal file
@@ -0,0 +1,14 @@
|
||||
; This file controls the webadmin feature of Cuberite
|
||||
; It specifies whether webadmin is enabled, and what logins are allowed.
|
||||
; Username format: [User:*username*]
|
||||
; Password format: Password=*password*; for example:
|
||||
; [User:admin]
|
||||
; Password=admin
|
||||
; Please restart Cuberite to apply changes made in this file!
|
||||
|
||||
[WebAdmin]
|
||||
Ports=8080
|
||||
Enabled=1
|
||||
|
||||
[User:admin]
|
||||
Password=
|
||||
Reference in New Issue
Block a user