Browse Source

Speed up function loading

Removed sleep 1 from fn_runfunction to speed up loading of functions.
This will save me a lot of time waiting.
pull/450/head
Daniel Gibbs 10 years ago
parent
commit
a8c39c9ab1
  1. 3
      7DaysToDie/sdtdserver
  2. 5
      ARKSurvivalEvolved/arkserver
  3. 5
      Arma3/arma3server
  4. 5
      BlackMesa/bmdmserver
  5. 5
      BladeSymphony/bsserver
  6. 5
      CounterStrike/csserver
  7. 5
      CounterStrikeConditionZero/csczserver
  8. 5
      CounterStrikeGlobalOffensive/csgoserver
  9. 5
      CounterStrikeSource/cssserver
  10. 5
      DayOfDefeat/dodserver
  11. 5
      DayOfDefeatSource/dodsserver
  12. 5
      DeathmatchClassic/dmcserver
  13. 5
      DontStarveTogether/dstserver
  14. 5
      DoubleActionBoogaloo/dabserver
  15. 5
      FistfulOfFrags/fofserver
  16. 5
      GarrysMod/gmodserver
  17. 5
      HalfLife2Deathmatch/hl2dmserver
  18. 4
      HalfLifeDeathmatch/hldmserver
  19. 5
      HalfLifeDeathmatchSource/hldmsserver
  20. 5
      Insurgency/insserver
  21. 5
      JustCause2/jc2server
  22. 5
      KillingFloor/kfserver
  23. 5
      Left4Dead/l4dserver
  24. 5
      Left4Dead2/l4d2server
  25. 5
      Mumble/mumbleserver
  26. 5
      NS2Combat/ns2cserver
  27. 5
      NaturalSelection2/ns2server
  28. 5
      NoMoreRoomInHell/nmrihserver
  29. 5
      OpposingForce/opforserver
  30. 5
      ProjectZomboid/pzserver
  31. 5
      RedOrchestra/roserver
  32. 5
      Ricochet/ricochetserver
  33. 5
      SeriousSam3BFE/ss3sserver
  34. 5
      StarBound/sbserver
  35. 5
      TeamFortress2/tf2server
  36. 5
      TeamFortressClassic/tfcserver
  37. 5
      TeamSpeak3/ts3server
  38. 5
      UnrealTournament2004/ut2k4server
  39. 5
      UnrealTournament99/ut99server

3
7DaysToDie/sdtdserver

@ -74,11 +74,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
ARKSurvivalEvolved/arkserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -79,11 +79,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Arma3/arma3server

@ -4,7 +4,7 @@
# Author: Daniel Gibbs
# Contributor: Scarsz
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -87,11 +87,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
BlackMesa/bmdmserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
BladeSymphony/bsserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
CounterStrike/csserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
CounterStrikeConditionZero/csczserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
CounterStrikeGlobalOffensive/csgoserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -95,11 +95,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
CounterStrikeSource/cssserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
DayOfDefeat/dodserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
DayOfDefeatSource/dodsserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
DeathmatchClassic/dmcserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
DontStarveTogether/dstserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -72,11 +72,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
DoubleActionBoogaloo/dabserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
FistfulOfFrags/fofserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
GarrysMod/gmodserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -84,11 +84,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
HalfLife2Deathmatch/hl2dmserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

4
HalfLifeDeathmatch/hldmserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,7 +77,7 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"

5
HalfLifeDeathmatchSource/hldmsserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Insurgency/insserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
JustCause2/jc2server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -74,11 +74,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
KillingFloor/kfserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -80,11 +80,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Left4Dead/l4dserver

@ -4,7 +4,7 @@
# Author: Daniel Gibbs
# Contributor: Summit Singh Thakur
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Left4Dead2/l4d2server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Mumble/mumbleserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -57,11 +57,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
NS2Combat/ns2cserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -83,11 +83,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
NaturalSelection2/ns2server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -83,11 +83,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
NoMoreRoomInHell/nmrihserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
OpposingForce/opforserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
ProjectZomboid/pzserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -71,11 +71,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
RedOrchestra/roserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -76,11 +76,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
Ricochet/ricochetserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
SeriousSam3BFE/ss3sserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -75,11 +75,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
StarBound/sbserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -71,11 +71,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
TeamFortress2/tf2server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -78,11 +78,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
TeamFortressClassic/tfcserver

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -77,11 +77,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
TeamSpeak3/ts3server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -54,11 +54,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
UnrealTournament2004/ut2k4server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -66,11 +66,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

5
UnrealTournament99/ut99server

@ -3,7 +3,7 @@
# Server Management Script
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
version="010715"
version="040715"
#### Variables ####
@ -65,11 +65,10 @@ if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
mkdir functions
fi
cd functions
echo -e "loading ${functionfile}...\c"
echo -e " loading ${functionfile}...\c"
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
chmod +x "${functionfile}"
cd "${rootdir}"
sleep 1
fi
source "${rootdir}/functions/${functionfile}"
}

Loading…
Cancel
Save