VJ
16-08-10, 01:46
Ok, well i decided to write up my server manager using batch files...
right now, there's a lot of files (all batch)
This is incomplete right now. (as I haven't actually downloaded all the servers)
but should be finished sometime tomorrow if i'm not busy :D
If you're interested...
notquitewhite.dyndns.org/ServerLauncher.zip
Code of starting batch file...
@ECHO OFF
COLOR 0c
TITLE "Game Server Launcher"
goto menu
:menu
cls
echo ----------------------
echo [Game Server Launcher]
echo ----------------------
echo.
echo [Servers] [Mods]
echo -----------------------------------------------------------
echo [1] Team Fortress 2 [5] Age of Chivalry
echo [2] Counter Strike: Source [6] Alien Swarm
echo [3] Left 4 Dead [7] Synergy
echo [4] Left 4 Dead 2 [8] Zombie Panic: Source
echo -----------------------------------------------------------
echo [9] Update All
echo.
echo [10] Quit
echo.
:choice
set /P C= ?
if "%C%"=="10" goto quit
if "%C%"=="9" goto updateall
if "%C%"=="8" goto ZPS
if "%C%"=="7" goto S
if "%C%"=="6" goto AS
if "%C%"=="5" goto AoC
if "%C%"=="4" goto L4D2
if "%C%"=="3" goto L4D
if "%C%"=="2" goto CSS
if "%C%"=="1" goto TF2
goto choice
:TF2
cls
echo Server Unavailable
pause
goto menu
:CSS
cd "content\menus"
CounterStrikeSource
:L4D
cls
echo Server Unavailable
pause
goto menu
:L4D2
cls
echo Server Unavailable
pause
goto menu
:AoC
cls
echo Server Unavailable
pause
goto menu
:AS
cd "content\menus"
AlienSwarm
:S
cls
echo Server Unavailable
pause
goto menu
:ZPS
cd "content\menus"
ZombiePanicSource
:updateall
cls
cd "content\updaters"
echo (%time%) Update Start.
echo.
update_all
echo (%time%) Completed.
echo.
pause
goto menu
:quit
exit
:end
right now, there's a lot of files (all batch)
This is incomplete right now. (as I haven't actually downloaded all the servers)
but should be finished sometime tomorrow if i'm not busy :D
If you're interested...
notquitewhite.dyndns.org/ServerLauncher.zip
Code of starting batch file...
@ECHO OFF
COLOR 0c
TITLE "Game Server Launcher"
goto menu
:menu
cls
echo ----------------------
echo [Game Server Launcher]
echo ----------------------
echo.
echo [Servers] [Mods]
echo -----------------------------------------------------------
echo [1] Team Fortress 2 [5] Age of Chivalry
echo [2] Counter Strike: Source [6] Alien Swarm
echo [3] Left 4 Dead [7] Synergy
echo [4] Left 4 Dead 2 [8] Zombie Panic: Source
echo -----------------------------------------------------------
echo [9] Update All
echo.
echo [10] Quit
echo.
:choice
set /P C= ?
if "%C%"=="10" goto quit
if "%C%"=="9" goto updateall
if "%C%"=="8" goto ZPS
if "%C%"=="7" goto S
if "%C%"=="6" goto AS
if "%C%"=="5" goto AoC
if "%C%"=="4" goto L4D2
if "%C%"=="3" goto L4D
if "%C%"=="2" goto CSS
if "%C%"=="1" goto TF2
goto choice
:TF2
cls
echo Server Unavailable
pause
goto menu
:CSS
cd "content\menus"
CounterStrikeSource
:L4D
cls
echo Server Unavailable
pause
goto menu
:L4D2
cls
echo Server Unavailable
pause
goto menu
:AoC
cls
echo Server Unavailable
pause
goto menu
:AS
cd "content\menus"
AlienSwarm
:S
cls
echo Server Unavailable
pause
goto menu
:ZPS
cd "content\menus"
ZombiePanicSource
:updateall
cls
cd "content\updaters"
echo (%time%) Update Start.
echo.
update_all
echo (%time%) Completed.
echo.
pause
goto menu
:quit
exit
:end