Ok, so here is what I believe is quite a big question. It seems like it's going to be difficult. If you've read my other posts about this, I've decided that it's much more time efficient if I just find the color of the monsters instead of looking for several images. But here is my problem, I find colors of not only the Bunnies but the dead bunnies and scenery as well. And while they are lying there for 5-10 seconds before they disappear , I'm clicking on them (or I'm stuck on a piece of scenery). And eventually die because of it. So here is my question-
Pink Bunny // Boss Bunny
Using FindBitmapMaskTolerance (or if any other you think would work better, let me know) could I check the color and, before clicking, check to see if it's one of the two masked images specified. This way I'm not clicking any of the dead bunnies. My code right now looks like this-
SCAR Code:
program Goonzu_AutoHunt;
const
PinkBunny = 11907831;
BossBunny = 12430334;
var
x, y:integer;
attacks:integer;
begin
GetClientDimensions(x, y);
FindWindowTitlePart('GoonZu', true);
ActivateClient;
attacks:= 0;
repeat
FindColorSpiralTolerance(x, y, PinkBunny, 300, 200, 800, 500, 10)
ClickMouse(x, y, true);
attacks := attacks + 1;
writeln('Pink Bunny found!' + IntToStr(attacks));
Wait(2000);
FindColorSpiralTolerance(x, y, BossBunny, 300, 200, 800, 500, 10)
ClickMouse(x + 10, y + 10, true);
attacks:= attacks + 1;
writeln('Boss Bunny found!' + IntToStr(attacks))
Wait(2000);
until false
end.
This works, I've tested it.
Ok, just to let you guys know. I don't want to come across as just asking for help and copying and pasting the answers. I'm not asking for freebies or handouts like an immature 12 year old who doesn't want to learn anything. The sources I use (mainly the SCAR help page with all the references; Toolbar -> Help -> Help) gives me quite a lot of information, but it doesn't teach you how to use it. Just shows you syntax basically.
All help is appreciated. Thanks for your help and future help 
Also, if any of you smart guys can think of a better way of doing this I'm all ears ^^