Results 1 to 4 of 4

Thread: Mouse Functions

  1. #1
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Mouse Functions

    Which mouse functions are detectable?
    Im currently using Mouse(x,y,1,1,true) and i cant really tell if its detectable or not.

  2. #2
    Join Date
    Jun 2007
    Location
    south park
    Posts
    1,160
    Mentioned
    0 Post(s)
    Quoted
    62 Post(s)

    Default

    This is from someones guide forgot the name lol!


    procedure MoveMouse(x, y: Integer);
    Simulate mouse movement, move cursor to x, y instantly.
    procedure MoveMouseSmooth(x, y: Integer);
    Simulate humanlike mouse movement to x, y from current mouse position.

    procedure MoveMouseSmoothFrom(x1, y1, x2, y2: Integer);
    Works like MoveMouseSmooth but has starting position specified. Moves mouse cursor smoothly from x1, y1 to x2, y2.

    procedure MoveMouseSmoothFromEx(x1, y1, x2, y2: Integer; minsleeptime, maxsleeptime, maxdistance, gravity, forces: Integer);
    Works like MoveMouseSmoothEx but has starting position specified. Moves mouse cursor smoothly from x1, y1 to x2, y2.

    procedure MoveMouseSpline(x, y, rx, ry: Integer);
    Similates humanlike mouse movement to x, y with a randomisation specified by rx and ry from the current mouse position. (More humanlike than MoveMouseSmooth)


    procedure MouseBox(x1, y1, x2, y2: Integer);
    Moves mouse (with spline) to a random coordinate in a box specified by 2 sets of coordinates x1, y1 and x2, y2.
    procedure ClickMouse(x, y: Integer; Left: Boolean);
    Simulate mouse click at x, y.
    Example:
    ClickMouse(100, 30, True); // Left click at coordinates 100, 30

    procedure ClickMouseMid(x, y: Integer);
    Simulate a middle mouse click at x, y.

    procedure ClickMouseSpline(x, y, rx, ry: Integer; Left: Boolean);
    Simulate mouse click at x, y with a randomness of rx and ry.
    Example:
    ClickMouseSpline(100, 30, 10, 5); // Left click at a random set of coordinates between 100, 30 and 110, 35

    procedure ClickMouseBox(x1, y1, x2, y2: Integer; Left: Boolean);
    Simulate random mouse click in a box specified by 2 sets of coordinates x1, y1 and x2, y2.
    http://www.youtube.com/user/YoHoJoSRL
    Good scripting guides on youtube
    Formerly known as (djcheater)

  3. #3
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im sorry. That does not really answer my question if "Mouse" function is detectable or not?

  4. #4
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    As far as we know, not really. I did hear someone was making a function to simulate strokes of a persons finger on a laptop touch pad... but i think they are just doing that for fun. Anyways, don't worry about it.

    oh btw i was talking about the Mouse function
    ~ Metagen

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
  •