Quote:
Originally Posted by Topgun1969
Sometimes could never get in because of the eqgame.exe crash. I went and made me a batch file that loaded the program 5 times. Just so i wouldn't have to keep loading in from desktop. Just put in the password crash and then next screen.
|
Or you could craft a batch file that automagically reloads eqgame.exe. psudo example posted as follows:
@echo off
cls
echo Starting EQ
:2
start /wait "c:\path\to\eqgame.exe"
goto 2
To halt the loop of EQ auto restarting, you will have to hit 'ctrl-C' in the batch file window and say yes to the prompt.
Windows users essentially use the same batch file to automate a relaunch of world.exe zone.exe upon crash.
the key to this working properly is the following flag:
/WAIT Start application and wait for it to terminate
Cheers