Results 1 to 2 of 2

Thread: SixHourFix How?

  1. #1
    Join Date
    May 2013
    Posts
    205
    Mentioned
    1 Post(s)
    Quoted
    85 Post(s)

    Default SixHourFix How?

    So this is built as far as I know,
    how do i implement it?

    SRL_SIXHOURFIX := TRUE ? //thats it?

  2. #2
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Yes, put that before SetupSRL; in your mainloop. You should also have
    Simba Code:
    if not LoggedIn then LoginPlayer;
    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.
    Example:
    Simba Code:
    repeat
      Thing;
    until(ConditionYouWantMet or (not LoggedIn));

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •