hey all, just wondering if this script is outdated. how can i find out if it is outdated? please tell me, newbie scripter here 
SCAR Code:
program AutoFighter;
/////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//BY;Drunkenoldma \
//You May need to edit line 32 \
//This Is a simple "AutoFighter" \
// I recommend watching it every 5-10 minutes because there is not antirandoms\
// Please comment. \
/////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
var
i,x,y: Integer;
const
/////////////////////////Setup\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//
MonsterColor1 =3229768; {Enter first Monster Color Here} //
MonsterColor2 =3229768; {Enter second Monster Color Here} //
MonsterColor3 =3229768; {Enter third Monster Color Here} //
MonsterKillCount =100; {how many monsters to kill} //
////////////////////////EndSetup\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
begin
repeat
i:= i + 1
if (FindColor(x,y,MonsterColor1,0,0,515,336))
or (FindColor(x,y,MonsterColor2,0,0,515,336))
or (FindColor(x,y,MonsterColor3,0,0,515,336)) then
begin
MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);
Wait(123+random(10));
ClickMouse(x,y,true);
wait(20000); {how many second you want to wait between each click}
end;
until i = MonsterKillCount
end.