mirror of
https://github.com/pelican-eggs/games-standalone.git
synced 2024-11-22 10:22:28 +01:00
72 lines
3.9 KiB
JSON
72 lines
3.9 KiB
JSON
|
{
|
||
|
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL",
|
||
|
"meta": {
|
||
|
"update_url": null,
|
||
|
"version": "PTDL_v2"
|
||
|
},
|
||
|
"exported_at": "2024-06-01T00:16:47+00:00",
|
||
|
"name": "Grand Theft Auto Connected",
|
||
|
"author": "admin@softwarenoob.com",
|
||
|
"description": "Grand Theft Auto Connected is a custom scriptable multiplayer modification for multiple Grand Theft Auto games.",
|
||
|
"features": null,
|
||
|
"docker_images": {
|
||
|
"ghcr.io/parkervcp/yolks:debian": "ghcr.io/parkervcp/yolks:debian"
|
||
|
},
|
||
|
"file_denylist": [],
|
||
|
"startup": "./Server",
|
||
|
"config": {
|
||
|
"files": "{\r\n \"server.xml\": {\r\n \"parser\": \"xml\",\r\n \"find\": {\r\n \"server.servername\": \"{{server.build.env.SERVERNAME}}\",\r\n \"server.port\": \"{{server.build.default.port}}\",\r\n \"server.httpport\": \"{{server.build.default.port}}\",\r\n \"server.game\": \"{{server.build.env.GAMETYPE}}\",\r\n \"server.serverbrowser\": \"{{server.build.env.SERVERBROWSER}}\"\r\n }\r\n }\r\n}",
|
||
|
"logs": "{}",
|
||
|
"startup": "{\r\n \"done\": \"Successfully added server\"\r\n}",
|
||
|
"stop": "quit"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"installation": {
|
||
|
"container": "ghcr.io/parkervcp/installers:debian",
|
||
|
"entrypoint": "bash",
|
||
|
"script": "#!/bin/bash\r\ncd /mnt/server\r\n\r\n\r\nif [ \"${DL_VERSION}\" == \"latest\" ]; then\r\n DOWNLOAD_LINK=https://gtaconnected.com/downloads/server/latest/linux\r\nelse\r\n DOWNLOAD_LINK=https://gtaconnected.com/downloads/GTAC-Server-Linux-${DL_VERSION}.tar.gz\r\nfi\r\n\r\nif [ ! -z \"${DOWNLOAD_LINK}\" ]; then \r\n if curl --output /dev/null --silent --head --fail --location ${DOWNLOAD_LINK}; then\r\n echo -e \"Chosen server version is valid.\"\r\n else\r\n echo -e \"Chosen server version is invalid, tried $DOWNLOAD_LINK. Exiting installation\"\r\n exit 2\r\n fi\r\nelse\r\n echo -e \"no download link, stopping installation\"\r\n exit 3\r\nfi\r\n\r\necho -e \"Downloading ${DL_VERSION} version of the server\"\r\ncurl -sSL ${DOWNLOAD_LINK} -o GTAC.tar.gz\r\necho \"Extracting files\"\r\ntar -xf GTAC.tar.gz\r\n\r\nchmod +x Server\r\nrm GTAC.tar.gz\r\n\r\necho \"Install complete\""
|
||
|
}
|
||
|
},
|
||
|
"variables": [
|
||
|
{
|
||
|
"name": "Game type",
|
||
|
"description": "Sets the game this server will support. Available options: gta:iii, gta:vc, gta:sa, gta:ug, gta:iv, gta:eflc",
|
||
|
"env_variable": "GAMETYPE",
|
||
|
"default_value": "gta:iv",
|
||
|
"user_viewable": true,
|
||
|
"user_editable": true,
|
||
|
"rules": "required|string|in:gta:iii,gta:vc,gta:sa,gta:ug,gta:iv,gta:eflc",
|
||
|
"field_type": "text"
|
||
|
},
|
||
|
{
|
||
|
"name": "Server Name",
|
||
|
"description": "The name of the server, which appears in the server browser.",
|
||
|
"env_variable": "SERVERNAME",
|
||
|
"default_value": "Pterodactyl Server",
|
||
|
"user_viewable": true,
|
||
|
"user_editable": true,
|
||
|
"rules": "required|string|max:60",
|
||
|
"field_type": "text"
|
||
|
},
|
||
|
{
|
||
|
"name": "serverbrowser",
|
||
|
"description": "Whether to show the server in the server browser, set to true or false",
|
||
|
"env_variable": "SERVERBROWSER",
|
||
|
"default_value": "true",
|
||
|
"user_viewable": true,
|
||
|
"user_editable": true,
|
||
|
"rules": "required|string|in:true,false",
|
||
|
"field_type": "text"
|
||
|
},
|
||
|
{
|
||
|
"name": "Server Version",
|
||
|
"description": "The version of GATC to install such as 1.2.10, enter latest for the latest version.",
|
||
|
"env_variable": "DL_VERSION",
|
||
|
"default_value": "latest",
|
||
|
"user_viewable": true,
|
||
|
"user_editable": true,
|
||
|
"rules": "required|string|max:20",
|
||
|
"field_type": "text"
|
||
|
}
|
||
|
]
|
||
|
}
|