So i know this is probably ub3r n33b of me but why do i keep getting this error?
Line 108: being the end of the script btw 
SCAR Code:
program jesus45lumbypwner;
{.Include SRL\SRL\Misc\Smart.Scar}
{.Include SRL\SRL.Scar}
{.Include SRL\SRL\Reflection\Reflection.Scar}
var
x, y, Axe: integer;
const
////////////////////////////////////////////////////////
Activity = True; // Wood cut or mine? //
AxeWield = False; // is axe wielded? //
//
//
//
//////////////////////////////////////////////////
procedure DeclarePlayers;
begin
HowManyPlayers := 1; //How many Players
NumberOfPlayers(HowManyPlayers);
CurrentPlayer :=0; //Starting Player
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Nick := '';
Players[0].Active := True;
// 1 for wc 2 for mine (both in lumby)
end;
{/////////////////////////////////////////////////////////////////////////
//
//
DO NOT TOUCH BELOW HERE, UNLESS YOU KNOW WHAT YOUR DOING ;) //
//
}////////////////////////////////////////////////////////////////////
procedure Hello;
begin
writeln(' WElCOME TO JESUS45 LUMBY PWNER ');
wait(250);
writeln(' ENJOY! ');
wait(200);
writeln(' and dont be a noob or ill flamzor you :)');
end;
Procedure Dtms;
begin
Axe := DTMFromString('78DA633467666028636440066D29020C82401' +
'A26CA680F54938DAA06260B57E30A549347408D23504D310135C6' +
'40352D04D45810760F00D4B8054D');
end;
function LoadPath: TPointArray;
begin
SetLength(Result, 9);
Result[0] := Point(3222, 3218);
Result[1] := Point(3229, 3218);
Result[2] := Point(3236, 3222);
Result[3] := Point(3233, 3230);
Result[4] := Point(3226, 3234);
Result[5] := Point(3222, 3240);
Result[6] := Point(3220, 3247);
Result[7] := Point(3207, 3247);
Result[8] := Point(3195, 3242);
end;
Procedure WalkToTree;
var
i: integer;
Path: TPointArray;
begin
Path:= LoadPath;
for i:= 0 to high(Path) do
begin
WalkToTile(Path[i],3,0);
end;
Wait(500+Random(200));
end;
procedure Mainloop;
begin
DeclarePlayers;
Hello;
LoadPath;
WalkToTree;
end.
SCAR Code:
Line 108: [Error] (20480:4): Semicolon (';') expected in script C:\Users\User\Desktop\rammstein\jesus45's lumby pwner.scar