forked from pufferpanel/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtf2.json
45 lines (45 loc) · 913 Bytes
/
tf2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"type": "srcds",
"display": "Team Fortress 2",
"data": {
"map": {
"value": "ctf_2fort",
"required": true,
"desc": "TF2 Map",
"display": "Team Fortess 2 Map to load",
"internal": false
},
"ip": {
"value": "0.0.0.0",
"required": true,
"desc": "What IP to bind the server to",
"display": "IP",
"internal": false
},
"port": {
"value": "27015",
"required": true,
"desc": "What port to bind the server to",
"display": "Port",
"internal": false,
"type": "integer"
}
},
"install": [
{
"type": "steamgamedl",
"appId": "232250"
}
],
"run": {
"command": "./srcds_run +ip ${ip} +port ${port} -game tf -console +map ${map} -norestart",
"stop": "exit"
},
"environment": {
"type": "tty"
},
"requirements": {
"os": "linux",
"arch": "amd64"
}
}