Well, when you search for the color, it doesn't move the mouse, so just input a "MMouse"! Like so,
SCAR Code:
{---------------------------ProphesyOfWolf Presents----------------------------
===============================================================================
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#######################Chicken Killer & Feather Collector######################
=== The title is pretty self explainatory. Put your character anywhere where
there are chickens, and start the script. Make sure the game is in vbright. ====
###############################################################################}
program chickenkiller;
{.include SRL/SRL.scar}
{.include SRL/SRL/skill/Fighting.scar}
const
bcolor1 = 3104383;
bcolor2 = 5424861;
bcolor3 = 1187462;
tcolor1 = 8431034;
tcolor2 = 5424861;
tcolor3 = 1187462;
killbrown = True;
killtan = True;
xs= 122;
xe= 637;
ys= 136;
ye= 474;
var
x,y: Integer;
procedure killtchickens;
begin
AttackMonster(tcolor1,tcolor2,tcolor3,'Chicken',7);
FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
MMouse(x,y,1,1)
If IsUpText('eather') then
Mouse(x,y,2,2,True);
end;
procedure killbchickens;
begin
AttackMonster(bcolor1,bcolor2,bcolor3,'Chicken',5);
FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
MMouse(x,y,1,1)
If IsUpText('eather') then
Mouse(x,y,2,2,True);
end;
begin
setupSRL;
repeat
If (Killtan = True) then
begin
killtchickens;
end;
If (KillBrown = True) then
Begin
killbchickens;
end;
until (false);
end.
Please Rep me if i helped!