So this is built as far as I know,
how do i implement it?
SRL_SIXHOURFIX := TRUE ? //thats it?
So this is built as far as I know,
how do i implement it?
SRL_SIXHOURFIX := TRUE ? //thats it?
Yes, put that before SetupSRL; in your mainloop. You should also have
Throughout your script because the SixHourFix only comes into play when you're trying to log in. I usually add them at the start of most procedures and functions. Also go through all your loops and make sure they all are until the thing you want or not logged in, this will avoid any infinite loops caused by getting logged out while in the loop.Simba Code:if not LoggedIn then LoginPlayer;
Example:
Simba Code:repeat
Thing;
until(ConditionYouWantMet or (not LoggedIn));
There are currently 1 users browsing this thread. (0 members and 1 guests)