I'm working on finishing up my first script. I keep on running into errors but I've got it down for the most part. But this one though is frustrating the hell out of me.
Simba Code:
procedure BankToMuseum;
var
x, y, i: Integer;
WalkPathToMuseum: TPointArray;
begin
if (LoggedIn) then
begin
if not FindNormalRandoms then
begin
MakeCompass('n');
Writeln('Walking to Museum...');
BankToMuseum := [Point(51, 175), Point(52, 139), //give me the error at this line, if i comment it out give me an error
Point(23, 136), Point(20, 106), //at this line and the next one as well.
Point(21, 80), Point(24, 55)];
if SPS_WalkPath(BankToMuseum) then
Writeln('At the Museum!');
end else
Writeln('found Random!');
end;
end;
I know i probably will have to add a ";" somewhere to it but i have no idea where. any help is greatly appreciated. 
It highlights this instance when I set the SPS path for walking. before all the "Points"