SCAR Code:
[B]program PropperChopper
{.include SRL\SRL.scar}
{.include SRL\SRL\skill\woodcutting.scar}
{.include SRL\SRL\extended\xantiban.scar}
const
Tree = 4489398;//You can change it if you want to chop another tree.
loads = 4;//i wouldnt advise going passed 12 but thats me....
procedure start;
begin
MakeCompass('n');
FindAxeHeadColor;
end;
procedure AntiBan;
begin
RotateEvery(1 + random(4));
RandomChatEvery(2 + random(4));
RandomRClickEvery(3 + random(4));
LeaveScreenEvery(1 + random(4));
AntiBan;
AlmostLogout;
end;
procedure TheMain;
begin
if FindColorSpiral(x, y, Tree, 0, 0, 517, 339) then
MMouse(x, y, 1, 1);
Mouse(x, y, 1, 1, true);
wait(3000);
FindHead;
AttachHead;
end;
procedure Dropping;
begin
wait(500);
DropAllLogs;
end;
begin
SetupSRL;
activateclient;
setup;
repeat
antiban;
repeat
TheMain;
until(InventoryFull)
drop;
until(loads=4)
end.[/B]
then i compile it and it says
Error: Semi colon expected in script scar, srl, srl, core? , global. i didnt even include core / global, whats up with this? and ive tryed to add it and it didnt work either. What should i do?