Results 1 to 8 of 8

Thread: Slow down "MoveMOuseSmooth"

  1. #1
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Slow down "MoveMOuseSmooth"

    I have tried "MouseSpeed:= 10" but still moves way too fast.

  2. #2
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol MouseSpeed is a varibale for mouse, not movemousesmooth. movemousesmooth is a predefined functrion, so u cannot modify it

  3. #3
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Infintry001 View Post
    lol MouseSpeed is a varibale for mouse, not movemousesmooth. movemousesmooth is a predefined functrion, so u cannot modify it
    Thats stinks.

  4. #4
    Join Date
    Oct 2006
    Posts
    500
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    use

    Code:
    MoveMouseSmoothEx(x,y, 2, 4, movespeed, 20, 10)
    but change movespeed to whatever fits your needs.

  5. #5
    Join Date
    Jun 2006
    Posts
    366
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    btw if you are trying to make a script for rs with movemousesmooth.. it is very detectable. Just a heads up
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig (I did, so should u )

  6. #6
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by da_professa View Post
    btw if you are trying to make a script for rs with movemousesmooth.. it is very detectable. Just a heads up
    Whats the best way to move a mouse from one coordinate to another thats not very detectable?

    I was putting the coordinates with liek +random(7)

  7. #7
    Join Date
    Aug 2006
    Location
    London
    Posts
    2,021
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default

    put
    SCAR Code:
    {.include SRL\SRL.scar}

    at the top of your script, then put
    SCAR Code:
    SetupSRL;
    once at the beginning of your script,

    use the procedure
    MMouse(dx,dy,randx,randy:integer);

    dx,dy are the x and y co-ordinates to move to,
    randx,randy are the random added to dx,dy

    example: MMouse(600,600,10,10);

    the procedure
    Mouse(dx,dy,randx,randy:integer;left:boolean);

    does the same thing, except it clicks at the end of its movement
    the last parimeter, chooses left or right click.
    true makes it left click, false makes it right click
    Join the Official SRL IRC channel. Learn how to Here.

  8. #8
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 05-17-2008, 12:48 PM
  2. action="www.site.com" method="post"
    By Jason2gs in forum General
    Replies: 4
    Last Post: 05-17-2007, 11:50 PM
  3. Replies: 3
    Last Post: 04-19-2007, 03:44 AM
  4. Replies: 5
    Last Post: 10-26-2006, 11:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •