Originally Posted by
Neutrolizer
Code:
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Searching - Tome
Legendary:0 Set:0 Rare:0 Magic:5 Gem:3 Tome:0
Ah I see the problem.. Yeah I did set vendoring to True. So I should set it to False? I enabled stashing of tomes since I wanted to keep the tomes. Not sure if this conflicts with looting of tomes = false since in other versions tomes = magic
Other than that, yeah its strange, 1.3.2 is working perfectly for me right now, 50 runs in at least..
Lol found the error. Set stashing tomes to false for now while I work on a fix.
No it had nothing to do with vendor being false, I just wanted to know what settings you had different than mine. This new log though is much easier to read and figure out the problems. turns out I had stash tomes in an infinite loop. Whoops.
EDIT::
Around line (630) is this
Code:
;Tomes
While $StashTomes == True
LogWrite("Searching - Tome")
If _ImageSearchArea($pngLoc & "tomeIcon.png",1,1398*$x_ratio, 572*$y_ratio, 1914*$x_ratio, 888*$y_ratio,$gX,$gY,100) Then
LogWrite("Stashing - Tome")
MouseClick("left",500*$x_ratio,360*$y_ratio,1,1)
Sleep(Random(500, 750))
MouseClick("right",$gX,$gY,1,1)
Sleep(Random(400, 600))
MouseClick("left",500*$x_ratio,200*$y_ratio,1,1)
Sleep(Random(200, 500))
EndIf
WEnd
Change it to this
Code:
;Tomes
While $StashTomes == True
LogWrite("Searching - Tome")
If _ImageSearchArea($pngLoc & "tomeIcon.png",1,1398*$x_ratio, 572*$y_ratio, 1914*$x_ratio, 888*$y_ratio,$gX,$gY,100) Then
LogWrite("Stashing - Tome")
MouseClick("left",500*$x_ratio,360*$y_ratio,1,1)
Sleep(Random(500, 750))
MouseClick("right",$gX,$gY,1,1)
Sleep(Random(400, 600))
MouseClick("left",500*$x_ratio,200*$y_ratio,1,1)
Sleep(Random(200, 500))
Else
ExitLoop
EndIf
WEnd