My LoginPlayer gets stuck for some reason. No idea why.
It just logs in and gets stuck in this loop in the LoginPlayer procedure (line 329 ish in Login.scar):
SCAR Code:repeat
Wait(1000);
c := c + 1;
Writeln('Waited ' + inttostr(c) + ' seconds'); //it just keeps printing "Waited 1 seconds..." etc
until (LoggedIn) or (c >= 600);
And LoggedIn works fine, I've tried doing "if loggedin then writeln('stuff');" and it returns true. For some reason it wont break out of that loop.




Reply With Quote






