initial commit (uploading from fujitsu-server)

This commit is contained in:
2020-12-29 12:21:46 +01:00
commit 6306400738
4 changed files with 137 additions and 0 deletions

44
csgo-start Executable file
View File

@@ -0,0 +1,44 @@
#!/bin/bash
# ×=================================×
# | bukkit-start by Elias Schriefer |
# ×=================================×
if [ "$1" = "-h" ]
then
echo "bukkit-start [option]"
echo
echo "Options:"
echo " -h Show help"
echo " -D starts Death Mach"
echo " -d starts Demolition"
echo "-C starts Classic Casual"
exit 0
fi
# Get the bukkit server status: is it running or stopped?
# We don't need echo, but thx anyways...
csgo-status > /dev/null
if [ $? -gt 0 ]
then
cd /home/steam/
sudo -u steam ./steamcmd.sh +login anonymous +force_install_dir /media/games/steamgames +app_update 740 +quit
cd /media/games/steamgames
case "$1" in
-D) sudo -u steam screen -dmS csgo ./srcds_run -game csgo -console -usercon +game_type 1 +game_mode 2 +mapgroup mg_allclassic +map de_dust
true
;;
-d) sudo -u steam screen -dmS csgo ./srcds_run -game csgo -console -usercon +game_type 1 +game_mode 1 +mapgroup mg_demolition +map de_lake
true
;;
-C) sudo -u steam screen -dmS csgo ./srcds_run -game csgo -console -usercon +game_type 0 +game_mode 0 +mapgroup mg_active +map de_dust2
esac
else
# or my unsuxesvul eksit koud...
false
fi
# and eksit wif that eksit koud
exit $?