View Single Post
  #1  
Old 01-12-2007, 12:31 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default Menus for choosing which client you want to run

This saved me some hassle , you have to edit and point them to you client directorys;
XP Version;
Code:
@ECHO off
cls
@ECHO.
@ECHO.
ECHO Please choose which EQEMU account you want to use
:start
@ECHO.
ECHO [1] EqEmu Login
ECHO [2] Local Server Login
ECHO [3] Play Eq Live
@ECHO.
set choice=
set /p choice=Type the number for your choice 
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='1' goto EqEmu
if '%choice%'=='2' goto Blackwater
if '%choice%'=='3' goto Live
ECHO "%choice%" is not valid please try again
ECHO.
goto start

REM Replace "F:\Progra~1\Sony\EverQuest\" with yours
:EqEmu
copy /Y F:\Progra~1\Sony\EverQuest\eqhost1.txt F:\Progra~1\Sony\EverQuest\eqhost.txt > null
ECHO Ready for Live EqEmu server...
sleep 3
"F:\Program Files\Sony\EverQuest\preq.bat" > null
goto end

:Blackwater
copy /Y F:\Progra~1\Sony\EverQuest\eqhost2.txt F:\Progra~1\Sony\EverQuest\eqhost.txt > null
ECHO Ready for Local server...
sleep 3
"F:\Program Files\Sony\EverQuest\preq.bat" > null
goto end

:Live
ECHO Ready for Live Everquest servers...
C:
cd\Progra~1\Sony\EQ_Live\
eqgame.exe patchme
sleep 3

goto end

:end
Win98 version (MS announced July this year as the last month for Win98 support - Good-Bye 98! 98 still had of DOS in it. Thank God for stuff like DosBox)
Code:
@ECHO off
:BEGIN
cls
@ECHO.
@ECHO.
ECHO Please choose which EQEMU account you want to use
@ECHO.
ECHO [1] EqEmu Login
ECHO [2] Local Server Login
ECHO [3] Play Eq Live
@ECHO.
CHOICE /N /C:123 PICK A NUMBER (1, 2, or 3)%1
if errorlevel == 3 goto Live
if errorlevel == 2 goto Blackwater
if errorlevel == 1 goto EqEmu
goto end

REM Replace "C:\Progra~1\Sony\EverQuest\" with yours
:EqEmu
copy /Y C:\Progra~1\Sony\EverQuest\eqhost1.txt C:\Progra~1\Sony\EverQuest\eqhost.txt > null
ECHO Ready for Live EqEmu server...
sleep 3
"C:\Program Files\Sony\EverQuest\preq.bat" > null
goto end

:Blackwater
copy /Y C:\Progra~1\Sony\EverQuest\eqhost2.txt C:\Progra~1\Sony\EverQuest\eqhost.txt > null
ECHO Ready for Local server...
sleep 3
"C:\Program Files\Sony\EverQuest\preq.bat" > null
goto end

:Live
ECHO Ready for Live Everquest servers...
C:
cd\Progra~1\Sony\EQ_Live\
eqgame.exe patchme
sleep 3

goto end

:end
Reply With Quote