For the color changing:
SCAR Code:
Const
HPlayers = 5;//How many players to use.
CC1 = 792178;//these colors are good so dont change =)
CC2 = 2029819;
CC3 = 4679296;
CC4 = 4217714;
TimeToKill = 8;//how long it takes to kill chicken
Just change CC1-CC4 to whatever colors you want.
As for the left click and attack, lemme check...
Change:
SCAR Code:
Begin
Rotate;
GetThoseChickens;
End;
Mouse(XX,YY,0,0,True);
Flag;
CheckRandoms;
SRlRandomsReport;
Wait(TimeToKill*1000+Random(1750));
Killed := Killed + 1;
Exp := EXp + 12;
To:
SCAR Code:
Begin
Rotate;
GetThoseChickens;
End;
Mouse(XX,YY,0,0,False);
ChooseOption(XX,YY,'ttack');
Flag;
CheckRandoms;
SRlRandomsReport;
Wait(TimeToKill*1000+Random(1750));
Killed := Killed + 1;
Exp := EXp + 12;
That should do it.