Results 1 to 3 of 3

Thread: Random Mouse Movements?

  1. #1
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default Random Mouse Movements?

    Hey guys, I want to add an custom made anti-ban sequence into my script using random mouse movements, is this possible?

    I tried

    Code:
        MoveMouse(randomrange(100,456));
    and it says

    [Error] (31:36): Invalid number of parameters at line 30
    Compiling failed.


    for that code...

    So I tried
    Code:
        MoveMouse(randomrange(100, 456);
    and it came up with:

    [Error] (31:36): comma (',') expected at line 30
    Compiling failed.



    So where the F should the , be haha

  2. #2
    Join Date
    Dec 2011
    Location
    Holland
    Posts
    545
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    You could use:
    Simba Code:
    MMouse(150, 200, 30, 30);
    this will move the mouse to the spot with x = 150; and y = 200; but with random(30) added to both, so the x will be between 150 and 180.
    MoveMouse will move the mouse straight to the point, in a line. while MMouse adds randomisation to that line, MMouse looks human, MoveMouse looks botty

  3. #3
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Thank you Chris

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
  •