mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
Added missing option for auto-save interval
Also I'm not sure why the default port was set to 8401. The default port for RCON is 28016.
This commit is contained in:
parent
79060745df
commit
7b7e2086b8
@ -8,7 +8,7 @@
|
|||||||
"author": "support@pterodactyl.io",
|
"author": "support@pterodactyl.io",
|
||||||
"description": "The only aim in Rust is to survive. To do this you will need to overcome struggles such as hunger, thirst and cold. Build a fire. Build a shelter. Kill animals for meat. Protect yourself from other players, and kill them for meat. Create alliances with other players and form a town. Do whatever it takes to survive.",
|
"description": "The only aim in Rust is to survive. To do this you will need to overcome struggles such as hunger, thirst and cold. Build a fire. Build a shelter. Kill animals for meat. Protect yourself from other players, and kill them for meat. Create alliances with other players and form a town. Do whatever it takes to survive.",
|
||||||
"image": "quay.io\/pterodactyl\/core:rust",
|
"image": "quay.io\/pterodactyl\/core:rust",
|
||||||
"startup": ".\/RustDedicated -batchmode +server.port {{SERVER_PORT}} +server.identity \"rust\" +rcon.port {{RCON_PORT}} +rcon.web true +server.hostname \\\"{{HOSTNAME}}\\\" +server.level \\\"{{LEVEL}}\\\" +server.description \\\"{{DESCRIPTION}}\\\" +server.url \\\"{{SERVER_URL}}\\\" +server.headerimage \\\"{{SERVER_IMG}}\\\" +server.worldsize \\\"{{WORLD_SIZE}}\\\" +server.seed \\\"{{WORLD_SEED}}\\\" +server.maxplayers {{MAX_PLAYERS}} +rcon.password \\\"{{RCON_PASS}}\\\" {{ADDITIONAL_ARGS}}",
|
"startup": ".\/RustDedicated -batchmode +server.port {{SERVER_PORT}} +server.identity \"rust\" +rcon.port {{RCON_PORT}} +rcon.web true +server.hostname \\\"{{HOSTNAME}}\\\" +server.level \\\"{{LEVEL}}\\\" +server.description \\\"{{DESCRIPTION}}\\\" +server.url \\\"{{SERVER_URL}}\\\" +server.headerimage \\\"{{SERVER_IMG}}\\\" +server.worldsize \\\"{{WORLD_SIZE}}\\\" +server.seed \\\"{{WORLD_SEED}}\\\" +server.maxplayers {{MAX_PLAYERS}} +rcon.password \\\"{{RCON_PASS}}\\\" +server.saveinterval {{SAVEINTERVAL}} {{ADDITIONAL_ARGS}}",
|
||||||
"config": {
|
"config": {
|
||||||
"files": "{}",
|
"files": "{}",
|
||||||
"startup": "{\r\n \"done\": \"Server startup complete\",\r\n \"userInteraction\": []\r\n}",
|
"startup": "{\r\n \"done\": \"Server startup complete\",\r\n \"userInteraction\": []\r\n}",
|
||||||
@ -108,7 +108,7 @@
|
|||||||
"name": "RCON Port",
|
"name": "RCON Port",
|
||||||
"description": "Port for RCON connections.",
|
"description": "Port for RCON connections.",
|
||||||
"env_variable": "RCON_PORT",
|
"env_variable": "RCON_PORT",
|
||||||
"default_value": "8401",
|
"default_value": "28016",
|
||||||
"user_viewable": 1,
|
"user_viewable": 1,
|
||||||
"user_editable": 0,
|
"user_editable": 0,
|
||||||
"rules": "required|integer"
|
"rules": "required|integer"
|
||||||
@ -122,6 +122,15 @@
|
|||||||
"user_editable": 1,
|
"user_editable": 1,
|
||||||
"rules": "required|string|max:64"
|
"rules": "required|string|max:64"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Save Interval",
|
||||||
|
"description": "Sets the server’s auto-save interval in seconds.",
|
||||||
|
"env_variable": "SAVEINTERVAL",
|
||||||
|
"default_value": "60",
|
||||||
|
"user_viewable": 1,
|
||||||
|
"user_editable": 1,
|
||||||
|
"rules": "required|integer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Additional Arguments",
|
"name": "Additional Arguments",
|
||||||
"description": "Add additional startup parameters to the server.",
|
"description": "Add additional startup parameters to the server.",
|
||||||
|
Loading…
Reference in New Issue
Block a user