Results 1 to 9 of 9

Thread: Auto clicker

  1. #1
    Join Date
    Feb 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Auto clicker

    can someone please just make an auto clicker script with smart client that clicks in 1 place thanks

  2. #2
    Join Date
    Feb 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    For osrs

  3. #3
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Simba Code:
    program autoClicker;
    {$DEFINE SMART}
    {$I SRL-OSR/SRL.simba}

    const
      waitTime = 1000; {1000 = 1 sec}
      randomWait = 300; {if waitTime = 1000 (1sec) and randomWait = 300 it will randomly sleep between 700-1300 ms}
      locX = 40;
      locY = 40;

    begin
      setupSRL;
      repeat
        clickMouse(locX, locY, MOUSE_LEFT);
        sleep(waitTime + randomRange(-randomWait, randomWait));
      until (false);
    end.

  4. #4
    Join Date
    Feb 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    EVERY TIME i run a script i get Error: Duplicate declaration "AddDTM" at line 164

  5. #5
    Join Date
    Feb 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    i tried it and got it to work, but still doesn't click

  6. #6
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by scoping6 View Post
    i tried it and got it to work, but still doesn't click
    is smart enabled and have you put in the correct coords?

  7. #7
    Join Date
    Feb 2015
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    yes smart client opens just doesnt click at all

  8. #8
    Join Date
    May 2012
    Location
    Moscow, Russia
    Posts
    661
    Mentioned
    35 Post(s)
    Quoted
    102 Post(s)

    Default

    Per aspera ad Astra!
    ----------------------------------------
    Slow and steady wins the race.

  9. #9
    Join Date
    Mar 2012
    Location
    San Diego
    Posts
    760
    Mentioned
    4 Post(s)
    Quoted
    91 Post(s)

    Default

    Quote Originally Posted by scoping6 View Post
    EVERY TIME i run a script i get Error: Duplicate declaration "AddDTM" at line 164
    Make sure the Interpreter is set to PascalScript and not Lape. Can be found under the 'Script' tab.

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
  •