Hey i want my script to repeat the main procedure until (LoadsNum = LoadsPerPlayer) or (not LoggedIn) or (StartTime = 21600000) and if that happens go to the nextplayer here is the code i get the error
Line 229: [Error] (18591:1): Identifier expected in script C:\Program Files\SCAR 3.20\Scripts\WoodCutting Members.scar
SCAR Code:begin
SetupSRL;
DeclarePlayers;
LoginPlayer;
SetupScript;
repeat
MainProc;
until(LoadsNum = LoadsPerPlayer) or (not LoggedIn) or (StartTime = 21600000);
NextPlayer(false);
until(False);
end.


Reply With Quote







.
. That would work but labels are not advised because they can be replaced with other loops. And you can just as easily use another repeat instead of labels.
