Results 1 to 8 of 8

Thread: MouseSpeed problem

  1. #1
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default MouseSpeed problem

    I know what i'm supposed to do, but it won't work...


    a simple script like this won't compile...


    SCAR Code:
    program New;  

    begin  
      MouseSpeed := 5;
    end.


    As far as I knew, MouseSpeed wasn't just an SRL include, so why won't this work? I know that MoveWindMouse let's you set the mouse speed without srl, so why can't you without the function itself?

    I know the point of other functions are to make it more human like by not clicking instantly and to not move the mouse at the same speed all the time, but i'm not worried about that for this script, as it's not for rs.

    I'm probably just missing some stupid mistake, or something like that. Any input would be great, thanks...

  2. #2
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    MouseSpeed is, AFAIK, native to SRL:
    SCAR Code:
    program New;
    {.Include SRL/SRL.Scar}
    begin
      MouseSpeed := 5;
    end.

    E:
    If you want to do it in SCAR:
    SCAR Code:
    MoveWindMouseEx
    ^ That lets you set the MouseSpeed

  3. #3
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    SCAR Code:
    program New;  
    {.Include SRL/SRL.scar}

    begin  
      SetupSRL;
      MouseSpeed := 5;
    end.
    There used to be something meaningful here.

  4. #4
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program Test;
    {.include SRL\SRL.scar}

    begin
      SetupSRL;
      MouseSpeed := 5;
    end.
    EDIT:

  5. #5
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    MouseSpeed is a srl variable so you need srl included. And you can only use it with (M)Mouse

    Edit: Triple Ninja?

  6. #6
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow you guys are fast... :P

    Ok, thanks for answering, I just wanted to know if it was an srl variable or not, which it is, ok, thanks guys, it is appreciated.

  7. #7
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Quote Originally Posted by Naum View Post
    MouseSpeed is, AFAIK, native to SRL:
    SCAR Code:
    program New;
    {.Include SRL/SRL.Scar}
    begin
      MouseSpeed := 5;
    end.

    E:
    If you want to do it in SCAR:
    SCAR Code:
    MoveWindMouseEx
    ^ That lets you set the MouseSpeed
    Quote Originally Posted by Frement View Post
    SCAR Code:
    program New;  
    {.Include SRL/SRL.scar}

    begin  
      SetupSRL;
      MouseSpeed := 5;
    end.
    Quote Originally Posted by Timer View Post
    SCAR Code:
    program Test;
    {.include SRL\SRL.scar}

    begin
      SetupSRL;
      MouseSpeed := 5;
    end.
    EDIT:
    Quote Originally Posted by MylesMadness View Post
    MouseSpeed is a srl variable so you need srl included. And you can only use it with (M)Mouse

    Edit: Triple Ninja?

    O.o same post times

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

  8. #8
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by Dgby714 View Post
    O.o same post times
    The might of SRL!
    There used to be something meaningful here.

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
  •