Results 1 to 3 of 3

Thread: Login.SIMBA fix.

  1. #1
    Join Date
    May 2015
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default Login.SIMBA fix.

    Noticed the login.simba was not loging out so i just changed the co-ordinates for the logout button in the login.simba as it is now.

    simply replace the function Logout: Boolean; with this code and it logs out no worries.


    Simba Code:
    function Logout: Boolean;
    var
      t: integer;
    begin
      result := not loggedin;
      if result then
        exit;
      if not gametab(tab_logout) then
        exit;

      mousebox(576,406,707,431,mouse_left);
      marktime(t);
      repeat
        wait(RandomRange(400,500));
        if timefrommark(t)>5000 then
          exit;
      until not loggedin;
      result := true;
    end;

  2. #2
    Join Date
    Aug 2017
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good

  3. #3
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

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
  •