Im following mayors simplistic tutorial. "Finding objects on the mainScreen"
I used ACA to mark the color of the object (in this case the object is just a rock)
As my mouse moves to the object it stops and right clicks exactly at the same pixel. The whole object is highlighted in red.
same thing happens as well if I follow his other thread under section Sub-Tutorial 3 - Using Auto Color Aid (ACA) to pick colours AND 6.5 The findDepositBox procedure
I cant figure out why this happens. I have checked my graphics settings. Not sure if I missed something or ACA is bugged? Im sure I have the graphics settings of rs3 right
EDIT: code here below
procedure findRock();
var
x, y, i: integer;
begin
if mainscreen.findObject(x, y, 3033695, 14, colorSetting(2, 3.30, 0.90), mainscreen.playerPoint, 20, 20, 30, ['rock'], MOUSE_LEFT) then
begin
wait(randomRange(1000, 2000));
end;
end;


Reply With Quote