Results 1 to 7 of 7

Thread: Setting mouse speed

  1. #1
    Join Date
    Oct 2008
    Posts
    196
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default Setting mouse speed

    Hello,
    Can someone tell me how to set the mouse's speed, especially during the bank pin event as it clicks on the numbers faster than the speed they load up at


    thank you

  2. #2
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    MouseSpeed := X;

    (X being a number of your choice )

    Hope I helped.

    -Boom

  3. #3
    Join Date
    Oct 2008
    Posts
    196
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Thanks a lot
    Another question, if you don't mind

    I'm trying to script my first ever bot but I'm kind of stuck. I'm trying to get my script to cut logs. It does so, but only clicks on the top most trees and ignores the lower ones. Is there any way I can make it choose the one closest to the player or make it choose something other than the most top?

    Simba Code:
    program New;
      {$i SRL\SRL.scar}

    function Findtree: Boolean;
    var
      x, y: integer;

    begin
    Result:= FindColorTolerance(x, y, 3034986, MSX1, MSY1, MSX2, MSY2, 20);
    Mouse(x, y, 5, 5, True);
    end;


    begin
      SetupSRL;
      Findtree;
    end.

  4. #4
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Sort(A)TPA will sort your TPA from closest to farthest (iirc)

    -Boom

  5. #5
    Join Date
    Oct 2008
    Posts
    196
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Thank you for your kind help

  6. #6
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Dynamite View Post
    Sort(A)TPA will sort your TPA from closest to farthest (iirc)

    -Boom
    You'll have to use FindColorSTolerance in order to take advantage of this.
    Try reading around about TPA's, they're so godamn amazing

  7. #7
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    You'll have to use FindColorSTolerance in order to take advantage of this.
    Try reading around about TPA's, they're so godamn amazing
    This man is very right

    -Boom

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
  •