I can't figure out how to use my ent finder. 
can someone please help me.
SCAR Code:
function FindEnt: Boolean;
begin
TreesColor;
For i:= 0 to 3 do
if (FindObjCustom(X, Y, ['ill','low','illo','llo'], [TreeColor[i]], 3)) then
MMouse(x,y,3,3);
For i:= 0 to 2 do
if (FindColorTolerance(x,y,EntColor[i],MSX1,MSY1,MSX2,MSY2,5)) then
Result := True;
EntsAvoided := EntsAvoided + 1;
if not (FindColorTolerance(x,y,EntColor[i],MSX1,MSY1,MSX2,MSY2,5)) then
Result := False;
end;
SCAR Code:
procedure ChopTree;
begin
TreesColor;
repeat
If Not Loggedin Then Break;
For i:= 0 to 4 do
if (FindObjCustom(X, Y, ['ill','low','illo','llo'], [TreeColor[i]], 3)) then
begin
FindEnt;
If FindEnt then
Wait(20000);
Mouse(x,y,3,3,False);
ChooseOption('hop down');
FFlag (0);
FindNormalRandoms;
RandomSpeak;
MyAntiBannage;
Wait(5000);
end;
Until(invfull);
end;