SCAR Code:
procedure inactive;
begin
if (Vialsfilled >.Integer1)then
Players[currentplayer].active:=false;
end;
SCAR Code:
Line 135: [Error] (17801:18): Syntax error in script
am i jsut not putting in the right thing from declare players?
heres my declare players
SCAR Code:
procedure DeclarePlayers;
begin
HowManyPlayers := 4;
CurrentPlayer:= 0;
NumberOfPlayers(HowManyPlayers);
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Nick := '';
Players[0].Integer1 := 55;
Players[0].Active := True;
Players[1].Name := '';
Players[1].Pass := '';
Players[1].Nick := '';
Players[1].Integer1 := 55;
Players[1].Active := True;
Players[2].Name := '';
Players[2].Pass := '';
Players[2].Nick := '';
Players[2].Integer1 := 55;
Players[2].Active := True;
Players[3].Name := '';
Players[3].Pass := '';
Players[3].Nick := '';
Players[3].Integer1 := 55;
Players[3].Active := True;
end;