my custom UI selector
Back again with a update. Again not sure if anyone will use this but hey what the heck right, lol..
Major update to the old batch file. Basically this just sets the proper eq2.ini file for me depending on the toon I am playing or loads test server.
The 4th option will delete my two custom ui folders, copy the default folder twice and rename them for my toons and copy in my modded UI files for me. (yes this has to be ran AFTER the patcher updates lol.)
The ping command is in there to create a "wait" time in the batch file. For example the program will launch the map updater then 25 sec later will launch EQ2.
@echo off
:START
CLS
color f5
echo.
echo. 1 - Humfrey
echo. 2 - Flippy
echo. 3 - Tradeskill
echo. 4 - Patch Day. Update your UI files.
echo. 5 - Test Server Play
echo.
echo. && set /p MO=Choose your option?
if /i "%MO%"=="5" (
goto 5
)
if /i "%MO%"=="4" (
goto 4
)
if /i "%MO%"=="3" (
goto 3
)
if /i "%MO%"=="2" (
goto 2
)
if /i "%MO%"=="1" (
goto 1
)
if "%MO%"=="0" goto 0
) else if /i "%MO%"=="" ( echo. CHOOSE AGAIN (
CLS
echo.
echo. Your selection was invalid. Please try again.
echo.
pause
goto START
)
PAUSE
:5
cls
start e:\sony\everqu~1\testse~1\testeq2
goto exit
:4
CLS
echo. Running this option will update your UI files to todays patch.
ping 1.1.1.1 -n 1 -w 5000 >nul
rmdir "e:\sony\everquest ii\ui\karens" /s /q
rmdir "e:\sony\everquest ii\ui\jonathans" /s /q
xcopy "e:\sony\everquest ii\ui\default" "e:\sony\everquest ii\ui\karens" /i /e
xcopy "e:\sony\everquest ii\ui\default" "e:\sony\everquest ii\ui\jonathans" /i /e
xcopy "e:\sony\everquest ii\ui\files\eq2map" "e:\sony\everquest ii\ui\karens\eq2map" /i /e
xcopy "e:\sony\everquest ii\ui\files\eq2map" "e:\sony\everquest ii\ui\jonathans\eq2map" /i /e
copy "e:\sony\everquest ii\ui\files\mookzoning\*.*" "e:\sony\everquest ii\ui\karens" /y
copy "e:\sony\everquest ii\ui\files\mookzoning\*.*" "e:\sony\everquest ii\ui\jonathans" /y
xcopy "e:\sony\everquest ii\ui\files\exchange" "e:\sony\everquest ii\ui\karens\" /i /e /y
xcopy "e:\sony\everquest ii\ui\files\exchange" "e:\sony\everquest ii\ui\jonathans\" /i /e /y
copy "e:\sony\everquest ii\ui\files\jon\*.*" "e:\sony\everquest ii\ui\jonathans" /y
xcopy "e:\sony\everquest ii\ui\files\images" "e:\sony\everquest ii\ui\jonathans\images" /i /e /y
cls
echo Your UI files have been updated. Restarting the application.
ping 1.1.1.1 -n 1 -w 5000 >nul
goto start
:3
CLS
del eq2.ini
copy trade.ini eq2.ini
GOTO trade
:2
CLS
del eq2.ini
copy flippy.ini eq2.ini
GOTO FIN
:1
CLS
del eq2.ini
copy humfrey.ini eq2.ini
GOTO FIN
:0a
echo. OPTION %MO% taken. EXIT the batch
Pause
GOTO FIN
:FIN
start C:\Progra~1\EQ2MAP~1\eq2u.exe
ping 1.1.1.1 -n 1 -w 20000 >nul
start eq2.exe
end
:trade
start eq2.exe
end
:exit
end
Last edited by jonathn2875 : 06-09-2005 at 04:06 PM.
|