Pertinax 10 Posted May 6, 2016 So I've been using this script for a month now, without any problem. program Au2;const XLeft = 0; YTop = 0; XRight = 500; YBottom = 500;var T: LongInt; bmp: TSCARBitmap; X, Y: Integer;begin repeat ClickMouse(13, 70, mbLeft); Wait(1000); ClickMouse(13, 70, mbLeft); VKeyDown(VK_Down); Wait(1000); ClickMouse(13, 70, mbLeft); VKeyDown(VK_Up); T := (GetSystemTime + (15 * 60 * 1000)); while (T > GetSystemTime) do begin Bmp := TSCARBitmap.Create('deNoTZOBk+H8xjWy0MEYPgtAEsbLxSMHZeNRjV' + 'YlHAVYtmK4lxhaCFhHDJjLEsOoiEgEAVvMyGw=='); if (FindBitmap(X, Y, Bmp, XLeft, YTop, XRight, YBottom)) then ClickMouse(X, Y, mbLeft); bmp.Free; end; Wait(150); until (False);end.end. Could I have done something, by mistake, or is it just the game im playing, that could have made some changes? Quote Share this post Link to post Share on other sites
Wanted 12 Posted May 6, 2016 Games can make subtle changes. I would try checking the client area and positions maybe updating the bitmap. More information would help Quote Share this post Link to post Share on other sites
Pertinax 10 Posted May 6, 2016 I've add a new bitmap, but it still can't "find" it. Yeah, thats the only thing I can tell, it lookings it cant "find" the bitmap anymore. Is there any code in Chrome or Java that can "interrupt" SCAR from running the script right? Quote Share this post Link to post Share on other sites
Wanted 12 Posted May 7, 2016 I've add a new bitmap, but it still can't "find" it. Yeah, thats the only thing I can tell, it lookings it cant "find" the bitmap anymore. Is there any code in Chrome or Java that can "interrupt" SCAR from running the script right? Try using a different browser and see if that makes any difference. Quote Share this post Link to post Share on other sites
Pertinax 10 Posted May 8, 2016 This had no effect Quote Share this post Link to post Share on other sites
Wanted 12 Posted May 8, 2016 This had no effect It's possible the game implemented some type of screen blocking. I would test to see if you can use other functions like GetColor etc. Quote Share this post Link to post Share on other sites