Quote:
|
Originally Posted by Azagoth
Forgive me if I give this a miss, and also advise other people to ignore it too.
|
Uh, why would you advise others to do the same?
Quote:
|
Originally Posted by Tarun
Since people can simply make the batch file, paste the code into a codebox?
|
Thought it would be easier this way.
Code:
@echo off
cls
title Guild Wars Launcher
:menu
cls
echo How do you want to run Guild Wars?
echo.
echo -----------------------------
echo 1. No switches (normal)
echo 2. No sound
echo 3. DirectX 8
echo 4. DirectX 8, no sound
echo 5. Update
echo.
echo 6. Exit
echo -----------------------------
echo.
set /p choice=Select an option:
if %choice% equ 0 goto menu
if %choice% equ 1 goto normaal
if %choice% equ 2 goto nosound
if %choice% equ 3 goto dx8
if %choice% equ 4 goto nosounddx8
if %choice% equ 5 goto update
if %choice% equ 6 goto afsluiten
:niks:
cls
goto menu
:normaal:
cls
echo.
echo You have selected the following option:
echo.
echo No switches (normal)
echo.
echo The game will run without any switches.
echo.
pause
start Gw.exe
exit
:nosound:
cls
echo.
echo You have selected the following option:
echo.
echo No sound
echo.
echo The game will run with the following switches:
echo -nosound
echo -mute
echo.
pause
start Gw.exe -nosound -mute
exit
:dx8:
cls
echo.
echo You have selected the following option:
echo.
echo DirectX 8
echo.
echo The game will run with the following switches:
echo -dx8
echo.
pause
start Gw.exe -dx8
exit
:nosounddx8:
cls
echo.
echo You have selected the following option:
echo.
echo DirectX 8, no sound
echo.
echo The game will run with the following switches:
echo -dx8
echo -mute
echo -nosound
echo.
pause
start Gw.exe -nosound -mute -dx8
exit
:update:
cls
echo.
echo You have selected the following option:
echo.
echo Update
echo.
echo The game will run with the following switches:
echo -image
echo.
pause
start Gw.exe -image
exit