Here is part that does not work. it just doesn't autocolor. What am i doing wrong.
SCAR Code:
procedure Chop;
//-------------------------------Chops willows-------------------------------
var times,Ax, Ay,rx, ry,WillowTree: Integer;
begin
Marktime(Times);
Status('AutoColoring...');
AntiRandom;
WillowTree := BitmapFromString(5, 1, 'beNrzVtfRVXfylXEPUAMy' +
'XAEZHQMg');
AutoColorThis(WillowTree, 10, X1, Y1, X2, Y2)
repeat
Status('Chopping...');
FindObjCustom(rx, ry, ['Wil','low'], [Ax, Ay], 5);
Wait(100+random(100));
Mouse(rx, ry, 2, 2, true);
AntiBan;
until(InvFull) or (TimeFromMark(times) > 45000);
end;