Okay this is a pretty bad example but hope u get the idea.
Finding Chicken...
SCAR Code:
if(FindColorTolerance(X, Y, ChickenColor, 0, 0, 100, 100, 4)) then
begin
MMouse(X, Y, 3, 3)
if(IsUpText('ick')) then
Mouse(X, Y, 3, 3)
end;
Prolly this would work, but it doesn't u should do it this way
SCAR Code:
if(FindColorTolerance(X, Y, ChickenColor, 0, 0, 100, 100, 4)) then
begin
Wait(50+random(100))
MMouse(X, Y, 3, 3)
Wait(100+random(150)) ///Give it time to spot the text, but not letting the chicken away :/
if(IsUpText('ick')) then
Wait(25+random(50))
Mouse(X, Y, 3, 3)
end;
But yes, hope u get the idea. Use Waits!!
But if ur doing a autofighter this isn't the way I suggest to do it