Originally Posted by
chancity
Try adjusting the scale on the tesseract capture.
Sent from my DROID RAZR using Tapatalk 2
I find 3 "TesseractScreenCapture" lines, 1 of them seems like it has to do with the gold capturing. I'm assuming this function here...
Code:
Func GetMoney($OpenInv = False)
If $OpenInv Then Send($Inventory)
Sleep(200)
$mon = _TesseractScreenCapture(0, "", 1, 2, 1454 * $x_ratio, 508 * $y_ratio, (1920 - 1571) * $x_ratio, (1080 - 525) * $y_ratio, 0)
$mon = CleanOCR($mon)
If $OpenInv Then Send($Inventory)
Sleep(50)
$mondelt = $mon - $monold
$monold = $mon
Return $mondelt
EndFunc ;==>GetMoney
I fiddled around with those numbers a bit but it didn't work, so either this isn't it or I'm changing the wrong numbers. Thank you for the suggestion though.
EDIT:
So I checked within the Tesseract Include script and there's a line of code in there where you can increase the accuracy of the screen capture, default is 2 so I raised it to 4, checking it out now.