PDA

View Full Version : Menus for choosing which client you want to run


Angelox
01-12-2007, 12:31 AM
This saved me some hassle , you have to edit and point them to you client directorys;
XP Version;
@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)
@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

eq4me
01-12-2007, 12:57 AM
I run EQ under Linux with Cedega. What I do is to softlink every file exept eqhost.txt in the Everquest Folder to another folder named eg. Everquest_LAN.

Are there Softlinks possible under Windows XP?

Angelox
01-12-2007, 02:46 AM
I run EQ under Linux with Cedega. What I do is to softlink every file exept eqhost.txt in the Everquest Folder to another folder named eg. Everquest_LAN.

Are there Softlinks possible under Windows XP?
I just recently quit Cedega, because they really don't support it anymore - what's posted at their forum are "hacks" on how to get EQ running, with no plans to fix.
I'm wondering if you can get EQ working under Cedega with all the pixel shaders?
Anyways, I have some windows boxes I can use for that.