Results 1 to 8 of 8

Thread: Mouse missclicking ? SMART 7.2 + OSR

  1. #1
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default Mouse missclicking ? SMART 7.2 + OSR

    I am using SMART v7.2 and OSR and I keep getting mouse missclicking.

    Whetever I use MouseBox or MoveMouse or any other Like HumanMMouse etc...

    From time to time script is missclicking on wrong places ,even when I log clicks ,it says correct position but clicks on wrong.

  2. #2
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Anyone? Its pretty annoying ,because there comes some situtaion which my script ca not handle because of all missclicks :/

  3. #3
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    Show the code you trying to run.

  4. #4
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    removed code
    Last edited by djborec; 07-03-2013 at 12:49 PM.

  5. #5
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    This is whole code, missclicking appeats everywhere I use mouse and click with it. Seems like its core problem more likely then script problem...

  6. #6
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by djborec View Post
    This is whole code, missclicking appeats everywhere I use mouse and click with it. Seems like its core problem more likely then script problem...
    Did you SetupSRL at the beginning of the script?

    Simba Code:
    begin
       {$IFDEF SIMBAMAJOR980}
        SMART_SERVER := 10;
        SMART_MEMBERS := TRUE;
        SMART_SIGNED := FALSE;
        SMART_SUPERDETAIL := FALSE;

      {$ELSE}

      {$ENDIF}

      SetupSRL;  //here

    (  main part of code removed ) //not sure why you done this?

    end.

  7. #7
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    Did you SetupSRL at the beginning of the script?

    Simba Code:
    begin
       {$IFDEF SIMBAMAJOR980}
        SMART_SERVER := 10;
        SMART_MEMBERS := TRUE;
        SMART_SIGNED := FALSE;
        SMART_SUPERDETAIL := FALSE;

      {$ELSE}

      {$ENDIF}

      SetupSRL;  //here

    (  main part of code removed ) //not sure why you done this?

    end.
    Simba Code:
    SetUpSRL;
       DeclarePlayers;
       ActivateClient;
       ClearDebug;
       saveSmartTime;

      //Inicialization:
      personCenter.x:=251;
      personCenter.y:=154;

       Repeat
          If Not LoggedIn then Exit;
          mainloop;
        Until(AllPlayersInactive);

    I removed it ,because I did not want any leecher to find out and run this script (took me some time to write this)

  8. #8
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by djborec View Post
    Simba Code:
    SetUpSRL;
       DeclarePlayers;
       ActivateClient;
       ClearDebug;
       saveSmartTime;

      //Inicialization:
      personCenter.x:=251;
      personCenter.y:=154;

       Repeat
          If Not LoggedIn then Exit;
          mainloop;
        Until(AllPlayersInactive);

    I removed it ,because I did not want any leecher to find out and run this script (took me some time to write this)
    Anyine had same problem??? I can not find anything on villavu...

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
  •