Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add scpsl server template #284

Open
wants to merge 6 commits into
base: v2.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scpsl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SCP:SL Server Template
This template downloads the scp:sl server and runs it on the default port 7777 (you can change it).
Currently I don't yet know how to edit config files via variables so currently you can only change the port.
> [!NOTE]
> During the first startup, you must answer the questions in the server console in order for the server to start correctly.
39 changes: 39 additions & 0 deletions scpsl/scpsl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "scpsl",
"display": "SCP:SL",
"type": "Standard",
Shieldowskyy marked this conversation as resolved.
Show resolved Hide resolved
"install": [
{
"appId": "996560",
"type": "steamgamedl"
},
{
"commands": [
"chmod +x LocalAdmin",
"chmod +x SCPSL.x86_64"
],
"type": "command"
}
],
"run": {
"stop": "stop",
"command": "./LocalAdmin ${port}",
"workingDirectory": "",
"pre": [],
"post": [],
"environmentVars": {}
},
"data": {
"port": {
"type": "integer",
"display": "Server Port",
"required": true,
"value": 7777
}
},
"environment": {
"type": "tty"
},
"supportedEnvironments": [],
"requirements": {}
}