Results 1 to 9 of 9

Thread: how do i slow Movemousesmooth down?

  1. #1
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    how do i slow Movemousesmooth down?

    so... i have made this script with just a few words and numbers but i want to slow it down


    SCAR Code:
    program movemouse;
    begin
    wait(500)
    Movemousesmooth(130, 629)
    wait(500)
    Movemousesmooth(1039, 322)
    wait(500)
    Movemousesmooth(674, 809)
    wait(500)
    Movemousesmooth(269, 249)
    wait(500)
    Movemousesmooth(577, 865)
    wait(500)
    Movemousesmooth(968, 365)
    end.

  2. #2
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    MouseSpeed := 40;

    The higher the number, the slower the mouse moves and vise versa.

  3. #3
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Buckleyindahouse View Post
    MouseSpeed := 40;

    The higher the number, the slower the mouse moves and vise versa.
    MouseSpeed only works to SRL's Mouse function..

  4. #4
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i prefer using only scar becuase i find it esyier to work with

  5. #5
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    You are using scar.lol

    You will have to deal with the fast motion cause as Pentti said, you can slow down the mouse unless its SRL and MoveMouseSmooth isnt.

    If you are making this for RuneScape, then your going to get banned.

  6. #6
    Join Date
    Feb 2006
    Location
    Helsinki, Finland
    Posts
    1,395
    Mentioned
    30 Post(s)
    Quoted
    107 Post(s)

    Default

    05hartor, you could use MoveMouseSmoothEx. There is not really any good ways to slow down MoveMouseSmooth.

  7. #7
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Yes. Just use MMouse.

    SCAR Code:
    MMouse(x, y, 2, 2);

    That will move the mouse to the coords X and Y. The two numbers on the end give it a little bit of randomness. The higher those numbers, the higher the randomness.

  8. #8
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    By default scar uses MoveMouseSmoothEx like this for MoveMouseSmooth:
    MoveMouseSmoothEx(100, 100, 1, 3, 45, 20, 10);
    The 1 is the minimum speed and the 3 the maximum speed.
    Increase those and you slow down the function.

  9. #9
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no, i just wanted to know how to do this

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. why is this so slow?
    By drizzt in forum OSR Help
    Replies: 11
    Last Post: 02-21-2008, 12:01 AM
  2. MoveMouseSmooth
    By Lalaji in forum OSR Help
    Replies: 3
    Last Post: 04-23-2007, 03:27 AM
  3. Slow down "MoveMOuseSmooth"
    By The Kool Aid Man in forum OSR Help
    Replies: 7
    Last Post: 11-26-2006, 04:38 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
  •