Results 1 to 6 of 6

Thread: Auto clicker for osrs simba

  1. #1
    Join Date
    May 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto clicker for osrs simba

    Looking for a basic auto clicker that can be used for anything within simba. Would like it to have the ability to target a location and change click intervals, I'm sure a script like this would be fairly easy to write but not sure it exists, could anyone help me out and write a quicky?

  2. #2
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    mouse(x, y);
    clickmouse(false);
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  3. #3
    Join Date
    Dec 2011
    Location
    United States
    Posts
    960
    Mentioned
    21 Post(s)
    Quoted
    504 Post(s)

    Default

    Code:
    program new;
    {$DEFINE SMART}
    {$I SRL-OSR/SRL.Simba}
    
    const
    XCord = 0;
    YCord = 0;
    MinWait = 1000; // 1000 = 1 second
    MaxWait = 2000;
    
    begin
      SetupSRL;
      repeat
       Mouse(XCord,YCord,0,0,mouse_left);
       Sleep(RandomRange(MinWait,MaxWait));
      until (false);
    end.

  4. #4
    Join Date
    May 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks! Currently on my macbook so i cant test but will soon.

  5. #5
    Join Date
    Mar 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    can some1 make me a script to setup an auto talker for 0,6 seconds and that works with smart? please?:l

  6. #6
    Join Date
    Jun 2014
    Location
    Lithuania
    Posts
    475
    Mentioned
    27 Post(s)
    Quoted
    200 Post(s)

    Default

    Quote Originally Posted by v3ng3djr View Post
    can some1 make me a script to setup an auto talker for 0,6 seconds and that works with smart? please?:l
    learn to script urself instead so u can write whatever u want then?

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
  •