Merge pull request #455 from wistlyr/scpsl_new

Update of SCP:SL egg for stability.
This commit is contained in:
Michael (Parker) Parker 2020-03-10 11:15:07 -07:00 committed by GitHub
commit 283f4cc4bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,29 @@
# SCP: Secret Laboratory
SCP: Secret Laboratory Pterodactyl egg. Works with MP2. Steam AppID: [996560](https://steamdb.info/app/996560/)
This server is **NOT** compatible with SMod2 due to it not being updated for MP2.
This server is **NOT** compatible with LocalAdmin due to server input causing it to crash. MultiAdmin with a config option is used instead.
### Minimum RAM
Minimum memory required to run the server: 3096 MB
### Server Port
Default port required to run the server.
| Port | Default |
|---------|---------|
| Game | 7777 |
### Verification
The server must be verified with the SCP:SL developers in order for it to be visible in the server browser.
Instructions are as follows:
* Make sure your server complies with the [Verified Server Rules](https://scpslgame.com/Verified_server_rules.pdf).
* Send an email to `server.verification@scpslgame.com` from your configured contact email with the following information:
1. The **public** IPv4 address of your server, with port. e.g. `69.69.69.69:7777`
2. If the server's IP is static or dynamic.

View File

@ -0,0 +1,45 @@
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v1"
},
"exported_at": "2020-03-09T01:05:52-04:00",
"name": "SCP: Secret Laboratory",
"author": "lumi@hedr.al",
"description": "The latest vanilla version of SCP:SL running through MultiAdmin for compatibility. LocalAdmin does not work. No SMod2.",
"image": "quay.io\/parkervcp\/pterodactyl-images:debian_mono-5-complete",
"startup": "mono MultiAdmin.exe --port {{SERVER_PORT}}",
"config": {
"files": "{\r\n \"scp_multiadmin.cfg\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"use_new_input_system: true\": \"use_new_input_system: false\",\r\n \"max_players:\": \"max_players: {{server.build.env.MAX_PLAYERS}}\"\r\n }\r\n },\r\n \".config\/SCP Secret Laboratory\/config\/{{SERVER_PORT}}\/config_gameplay.txt\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"server_ip:\": \"server_ip: 0.0.0.0\",\r\n \"forward_ports: true\": \"forward_ports: false\",\r\n \"contact_email:\": \"contact_email: {{server.build.env.CONTACT_EMAIL}}\",\r\n \"max_players:\": \"max_players: {{server.build.env.MAX_PLAYERS}}\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"Waiting for players\",\r\n \"userInteraction\": []\r\n}",
"logs": "{\r\n \"custom\": false,\r\n \"location\": \"logs\/latest.log\"\r\n}",
"stop": "EXIT"
},
"scripts": {
"installation": {
"script": "# Downloads SteamCMD\r\napt update\r\napt -y --no-install-recommends install curl unzip lib32gcc1 ca-certificates wget\r\ncd \/tmp\r\ncurl -sSL -o steamcmd.tar.gz http:\/\/media.steampowered.com\/installer\/steamcmd_linux.tar.gz\r\n\r\n# Extracts SteamCMD\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\n# Downloads the server\r\nexport HOME=\/mnt\/server\r\n.\/steamcmd.sh +login anonymous +force_install_dir \/mnt\/server +app_update 996560 +quit\r\n\r\n# Hoster policy\r\necho 'gamedir_for_configs: true' >> \/mnt\/server\/hoster_policy.txt\r\nchmod +x \/mnt\/server\/hoster_policy.txt\r\n\r\n# Downloads MultiAdmin\r\nURL=$(curl https:\/\/api.github.com\/repos\/Grover-c13\/MultiAdmin\/releases\/latest | grep browser_download_url | cut -d '\"' -f 4)\r\nwget -P \/mnt\/server\/ $URL\r\nchmod +x \/mnt\/server\/MultiAdmin.exe\r\n\r\n# Compatibility fix for MultiAdmin\r\necho \"use_new_input_system: false\" >> \/mnt\/server\/scp_multiadmin.cfg\r\necho \"max_players: 20\" >> \/mnt\/server\/scp_multiadmin.cfg",
"container": "ubuntu:latest",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Contact Email",
"description": "A contact email is required for this server to show up on the public server list. Leave \"default\" to opt out.",
"env_variable": "CONTACT_EMAIL",
"default_value": "default",
"user_viewable": 0,
"user_editable": 0,
"rules": "required|string|max:254"
},
{
"name": "Max Players",
"description": "This will change the maximum player count.",
"env_variable": "MAX_PLAYERS",
"default_value": "20",
"user_viewable": 0,
"user_editable": 0,
"rules": "required|integer"
}
]
}