is your character banned yet?
- First, use standards so we can all read it
- Use the SRL include.
- Do not use clickMouse. Use SRL's mouse.
- Use failsafes.
Im using Shermantors because he fixed the loop up the look nicely 
SCAR Code:
program Goonzu_AutoHunt;
{.include srl/srl.scar}
const
PinkBunny = 11907831;
BossBunny = 11772665;
var
x, y:integer;
begin
repeat
if FindColorTolerance(x, y, PinkBunny, 300, 100, 700, 450, 0) then
begin
mouse(x + 10, y + 10, 3, 3, true);
writeln('Pink Bunny found');
Wait(3000);
end else
begin
writeln('Cant find anymore Pink Bunny :S');
Break;
end;
if FindColorTolerance(x, y, BossBunny, 300, 100, 700, 450, 0) then
begin
mouse(x + 10, y + 10, 3, 3, true);
writeln('Boss Bunny found')
Wait(5000);
end else
begin
writeln('Cant find anymore Boss Bunny :S');
Break;
end;
until(not(loggedIn));
end.