Update Rust egg to support the Rust+ Companion app
This commit is contained in:
		
							parent
							
								
									40abdb03cc
								
							
						
					
					
						commit
						4c8493ed55
					
				@ -1,5 +1,15 @@
 | 
			
		||||
# Source Based Games
 | 
			
		||||
### Rust
 | 
			
		||||
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.
 | 
			
		||||
 | 
			
		||||
### Minimum RAM warning
 | 
			
		||||
The server requires at least 4096MB to run properly.
 | 
			
		||||
This is mostly needed for the startup only, once it is running (depending on your world size) it should consume less.
 | 
			
		||||
 | 
			
		||||
### Server Ports
 | 
			
		||||
Many of these servers will require the steam query ports to be open for the server.
 | 
			
		||||
The default steam query port is 27015
 | 
			
		||||
Ports required to run the server.
 | 
			
		||||
 | 
			
		||||
| Port    | default |
 | 
			
		||||
|---------|---------|
 | 
			
		||||
| Game and Query | 28015 UDP |
 | 
			
		||||
| RCON | 28016 TCP |
 | 
			
		||||
| Rust+ App | 28082 TCP |
 | 
			
		||||
 | 
			
		||||
@ -3,12 +3,12 @@
 | 
			
		||||
    "meta": {
 | 
			
		||||
        "version": "PTDL_v1"
 | 
			
		||||
    },
 | 
			
		||||
    "exported_at": "2019-03-25T10:30:58-04:00",
 | 
			
		||||
    "exported_at": "2020-06-03T20:47:00-07:00",
 | 
			
		||||
    "name": "Rust",
 | 
			
		||||
    "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.",
 | 
			
		||||
    "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}}\\\" +server.saveinterval {{SAVEINTERVAL}} {{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}} +app.port {{APP_PORT}} {{ADDITIONAL_ARGS}}",
 | 
			
		||||
    "config": {
 | 
			
		||||
        "files": "{}",
 | 
			
		||||
        "startup": "{\r\n    \"done\": \"Server startup complete\",\r\n    \"userInteraction\": []\r\n}",
 | 
			
		||||
@ -17,8 +17,8 @@
 | 
			
		||||
    },
 | 
			
		||||
    "scripts": {
 | 
			
		||||
        "installation": {
 | 
			
		||||
            "script": "apt update\r\napt -y --no-install-recommends install curl unzip lib32gcc1 ca-certificates\r\ncd \/tmp\r\ncurl -sSL -o steamcmd.tar.gz http:\/\/media.steampowered.com\/installer\/steamcmd_linux.tar.gz\r\n\r\nmkdir -p \/mnt\/server\/steam\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steam\r\ncd \/mnt\/server\/steam\r\nchown -R root:root \/mnt\r\n\r\nexport HOME=\/mnt\/server\r\n.\/steamcmd.sh +login anonymous +force_install_dir \/mnt\/server +app_update 258550 +quit\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v \/mnt\/server\/steam\/linux32\/steamclient.so \/mnt\/server\/.steam\/sdk32\/steamclient.so",
 | 
			
		||||
            "container": "ubuntu:16.04",
 | 
			
		||||
            "script": "apt update\r\napt -y --no-install-recommends install curl unzip lib32gcc1 ca-certificates\r\ncd \/tmp\r\ncurl -sSL -o steamcmd.tar.gz http:\/\/media.steampowered.com\/installer\/steamcmd_linux.tar.gz\r\n\r\nmkdir -p \/mnt\/server\/steam\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steam\r\ncd \/mnt\/server\/steam\r\nchown -R root:root \/mnt\r\nexport HOME=\/mnt\/server\r\n.\/steamcmd.sh +login anonymous +force_install_dir \/mnt\/server +app_update 258550 +quit\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v \/mnt\/server\/steam\/linux32\/steamclient.so \/mnt\/server\/.steam\/sdk32\/steamclient.so",
 | 
			
		||||
            "container": "debian:buster-slim",
 | 
			
		||||
            "entrypoint": "bash"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
@ -122,6 +122,15 @@
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "rules": "required|string|max:64"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Save Interval",
 | 
			
		||||
            "description": "Sets the server\u2019s auto-save interval in seconds.",
 | 
			
		||||
            "env_variable": "SAVEINTERVAL",
 | 
			
		||||
            "default_value": "60",
 | 
			
		||||
            "user_viewable": 1,
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "rules": "required|integer"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Additional Arguments",
 | 
			
		||||
            "description": "Add additional startup parameters to the server.",
 | 
			
		||||
@ -132,12 +141,12 @@
 | 
			
		||||
            "rules": "nullable|string"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Save Interval",
 | 
			
		||||
            "description": "Sets the server\u2019s auto-save interval in seconds.",
 | 
			
		||||
            "env_variable": "SAVEINTERVAL",
 | 
			
		||||
            "default_value": "60",
 | 
			
		||||
            "name": "App Port",
 | 
			
		||||
            "description": "Port for the Rust+ App.  -1 for disabled.",
 | 
			
		||||
            "env_variable": "APP_PORT",
 | 
			
		||||
            "default_value": "28082",
 | 
			
		||||
            "user_viewable": 1,
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "user_editable": 0,
 | 
			
		||||
            "rules": "required|integer"
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user