Page 2 of 2 FirstFirst 12
Results 26 to 28 of 28

Thread: Grim's GnomeAgility

  1. #26
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    nice.

  2. #27
    Join Date
    Jan 2012
    Location
    United States
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL/SRL/misc/smart.scar' used from ''
    ~Haro Der

  3. #28
    Join Date
    Dec 2007
    Posts
    289
    Mentioned
    4 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by uz3 View Post
    Also, before you Mouse(x, y, 5, 5, True); I'm pretty sure you should have MMouse(x,y,5,5);
    So it would look like this

    MMouse(x,y,5,5);
    Mouse(x, y, 5, 5, True);

    Doing that makes your mouse appear more human than without. Unless GetMousePos(x, y); makes it look human? I don't know, I've never tried...
    If I'm not mistaken...

    Simba Code:
    (*
    Mouse
    ~~~~~

    .. code-block:: pascal

        procedure Mouse(mousex, mousey, ranx, rany: Integer; button: variant);

    Moves then clicks mouse (will only move if 'mouse_move' passed).

    .. note::

        by Mutant Squirrle, Harry

    Example:

    .. code-block:: pascal

    *)

    procedure Mouse(mousex, mousey, ranx, rany: Integer; button: variant);
    begin
      MMouse(mousex, mousey, ranx, rany);
      Wait(60 + Random(30));
      ClickMouse2(button);
      Wait(50 + Random(50));
    end;

    Someone correct me if I'm wrong?

Page 2 of 2 FirstFirst 12

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
  •