12 lines
232 B
Bash
12 lines
232 B
Bash
#!/bin/bash
|
|
|
|
cd /hlds
|
|
|
|
./hlds_run \
|
|
-game cstrike \
|
|
+maxplayers ${MAXPLAYERS:-16} \
|
|
+map ${MAP:-de_dust2} \
|
|
+sv_lan 0 \
|
|
+rcon_password ${RCON_PASSWORD:-changeme} \
|
|
-port ${PORT:-27015} \
|
|
-${VAC:-insecure} |