Originally Posted by
Hompacko
I've been having this same problem for a while now, I thought maybe putting a check if the profile screen is up, press esc, then resume game.
edit: I'm trying out a little code, that I got from here:
http://www.ownedcore.com/forums/diab...ml#post2294014 ([Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080])
It had to be changed a bit to match the code BlackSack's script uses so mine is like this:
PHP Code:
Func ResumeGame()
RandClick("left", Round(230 * $x_ratio), Round(416 * $y_ratio), 120, 20, 1, 4);button to resume game from main menu
Send("{ESCAPE}")
RandClick("left", Round(230 * $x_ratio), Round(416 * $y_ratio), 120, 20, 1, 4);button to resume game from main menu
Send("{ESCAPE}")
RandClick("left", Round(230 * $x_ratio), Round(416 * $y_ratio), 120, 20, 1, 4);button to resume game from main menu
EndFunc
And replace "RandClick("left", Round(230 * $x_ratio), Round(416 * $y_ratio), 120, 20, 1, 4);" on line 181 with "Call("ResumeGame")"
edit2: This didn't work

Might have found a solution.
PHP Code:
If($Go) Then
$i = 0
Send("{SPACE}")
Sleep(300)
WinSetTitle($title, "", $title & $ver & " - Running")
MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
;Checks if the player is Dead/Logout/Window, then in Old Ruins, then if in Main Menu, etc.
If CheckDead() Then
Return
ElseIf CheckFor("OldRuins", "", 1500 * $x_ratio, 0 * $y_ratio, 1920 * $x_ratio, 80 * $y_ratio, 1, 140) Then
Call("TownPortal")
Call("LeaveGame")
Return
ElseIf CheckFor("MainMenu", "", Round(40 * $x_ratio), Round(300 * $y_ratio), Round(400 * $x_ratio), Round(450 * $y_ratio), 7, 140) Then
GUICtrlSetData($lblRun, "Runs till vendor: " & $mLootIn & ", Run Number: " & $run)
GUICtrlSetData($lblLocation, "Location: Main Menu")
GUICtrlSetData($lblStatus, "Status: Starting Game")
Send("{SPACE}")
Sleep(300)
RandClick("left", Round(230 * $x_ratio), Round(416 * $y_ratio), 120, 20, 1, 4) ;Random Click on the resume button
$rt = TimerInit()
$run += 1
I changed the sleeps from 100 to 300. This starts around like 160. Just ran it for 4 hours with no problems. Might have just gotten lucky, but still, no problems so far.