compatible?

Here is the batch file I use, it may help.

@echo off

:config
cls
type c:\progra~1\everqu~1\eqstatus.txt
echo ===========================================
echo EQEmu Configuration:
echo ===========================================
echo [1] Load Spells for EQEmu
echo [2] Load Spells for Winter Roar
echo -------------------------------------------
echo [3] Update Everquest
echo [4] Run Patch (After Updating Everqust)
echo -------------------------------------------
echo [5] Run EverQuest in Window
echo [6] Run EverQuest in Full Screen
echo -------------------------------------------
echo [7] Exit
echo -------------------------------------------
echo [8] Web Site - Winter Roar
echo [9] Web Site - Guild Wars
echo [0] Web Site - EQemu
echo ===========================================

choice /c:1234567890 Enter your choice: /n
if errorlevel=9 goto nine
if errorlevel=8 goto eight
if errorlevel=7 goto end
if errorlevel=6 goto six
if errorlevel=5 goto five
if errorlevel=4 goto four
if errorlevel=3 goto three
if errorlevel=2 goto two
if errorlevel=1 goto one
goto ten

:eek:ne
copy c:\progra~1\everqu~1\winterr\1.txt c:\progra~1\everqu~1\eqstatus.txt /y
copy c:\progra~1\everqu~1\eqfix\spells_en.txt c:\progra~1\everqu~1 /y
goto config

:two
copy c:\progra~1\everqu~1\winterr\2.txt c:\progra~1\everqu~1\eqstatus.txt /y
copy c:\progra~1\everqu~1\winterr\spells_en.txt c:\progra~1\everqu~1 /y
goto config

:three
copy c:\progra~1\everqu~1\winterr\3.txt c:\progra~1\everqu~1\eqstatus.txt /y
c:
cd\progra~1\everqu~1\
everquest

:four
copy c:\progra~1\everqu~1\winterr\1.txt c:\progra~1\everqu~1\eqstatus.txt /y
copy c:\progra~1\everqu~1\eqfix\*.* c:\progra~1\everqu~1 /y
goto config

:five
c:
cd\progra~1\everqu~1\
cls
type c:\progra~1\everqu~1\winterr\5.txt
pause >nul
eqw.exe
goto config

:six
c:
cd\progra~1\everqu~1\
eqgame.exe patchme
goto config

:eight
explorer http://www.wintersroar.com/index.html
goto config

:nine
explorer http://www.eqemupvp.net/forums/index.php?sid=13d318f02a8e87e9b95549a0b456c453
goto config

:ten
explorer http://eqemu.net/
goto config

:end
cls
echo Exiting Configuration
 
Back
Top Bottom