Results 1 to 7 of 7

Thread: Mouse problem. (Moving extremely slow)

  1. #1
    Join Date
    Jul 2009
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Mouse problem. (Moving extremely slow)

    Ok, So I'm doing this command...

    Mouse(229, 104, 1, 1,true)

    It works but the mouse is moving EXTREMELY slow.

    And it only just now started doing it. What's with that?

  2. #2
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Have you called SetupSRL?
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  3. #3
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    Have you called SetupSRL?
    that, or mousespeed := 10

    your problem is, is that the default mousespeed is 0, which means the mouse by default moves extreamly slow. the higher the number, the faster the moue

    only keep it within 7-20 though, or jagex might catch on
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  4. #4
    Join Date
    Jul 2009
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    Have you called SetupSRL?
    Yeah I have... Idk what is goin on

  5. #5
    Join Date
    Jul 2009
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    that, or mousespeed := 10

    your problem is, is that the default mousespeed is 0, which means the mouse by default moves extreamly slow. the higher the number, the faster the moue

    only keep it within 7-20 though, or jagex might catch on
    Code:
    program Swaggin;
    {.include srl/srl.scar}
    function GenerateRandomWord : String;
    begin
     case RandomRange(1, 10) of
     1: Result := 'youtube';
     2: Result := 'villavu srl';
     3: Result := 'facebook';
     4: Result := 'how big is the earth?';
     5: Result := 'google maps';
     6: Result := 'new planet found';
     7: Result := 'over population';
     8: Result := 'global warming';
     9: Result := 'homework help';
     10: Result := 'how to code html?';
     end;
    end;
    
    begin
    Mouse(229, 104, 1, 1,true) //change to coordinates of search bar
    GenerateRandomWord;
    Mouse(397, 267,1,1,true) //Change to coordinates of Search Button
    end.
    Why is it moving slow?

  6. #6
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Make "SetupSRL" the first procedure called!

    SCAR Code:
    begin
      SetupSRL; // or MouseSpeed := 13;
      Mouse({...});
      GenerateRandomWord;
      Mouse({...});
    end.
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  7. #7
    Join Date
    Jul 2009
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    Make "SetupSRL" the first procedure called!

    SCAR Code:
    begin
      SetupSRL; // or MouseSpeed := 13;
      Mouse({...});
      GenerateRandomWord;
      Mouse({...});
    end.
    LOL! Yeah I just figured it out lmao what a noob mistake haha
    Thanks

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
  •