Results 1 to 6 of 6

Thread: Auto clicker

  1. #1
    Join Date
    Apr 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto clicker

    can a person that is good at scripting(not me ) plz make an auto click that can click on two places. i am making a lot of bolts and i need to feather them all. So it would be nice if i could just watch it and if it gets randoms then deal with it. this means its does not need a anti random or log in or any thing, it just needs to be able to click in two places, and repeat it for a long time

    if any 1 can, i thank you as it would realy help.

  2. #2
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1: Drag the client onto the runescape screen

    2: use the color picker on the 2 spots to get the coordinates

    3: Put the first coordinate in the first Mouse, and the second coordinates in the second mouse:

    SCAR Code:
    program Whatever;
    {.include SRL/SRL.scar}

    procedure ClickTheStuff;
    begin
      Mouse(coords,coords,2,2,true); //First set of coordinates where coords are
      wait(250+random(500));
      Mouse(coordsB,CoordsB,2,2,true); //same as above except use other coords
      wait(250+random(500));
    end;

    begin
      repeat
        ClickStuff;
      until(IsFKeyDown(3));
    end.

    So all you need to do to stop it is just hold down the f 3 key Just fill in the coords with the coordinates you pick with the color picker on where the items are..

    Try to pick near the middle of the item!

  3. #3
    Join Date
    Apr 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by JAD View Post
    1: Drag the client onto the runescape screen

    2: use the color picker on the 2 spots to get the coordinates

    3: Put the first coordinate in the first Mouse, and the second coordinates in the second mouse:

    SCAR Code:
    program Whatever;
    {.include SRL/SRL.scar}

    procedure ClickTheStuff;
    begin
      Mouse(coords,coords,2,2,true); //First set of coordinates where coords are
      wait(250+random(500));
      Mouse(coordsB,CoordsB,2,2,true); //same as above except use other coords
      wait(250+random(500));
    end;

    begin
      repeat
        ClickStuff;
      until(IsFKeyDown(3));
    end.

    So all you need to do to stop it is just hold down the f 3 key Just fill in the coords with the coordinates you pick with the color picker on where the items are..

    Try to pick near the middle of the item!

    OOHHH man u rock. i wish i could kiss you. BUT i am a noob at scripting and i found a mistake

    you put

    SCAR Code:
    begin
      repeat
        ClickStuff;
      until(IsFKeyDown(3));
    end.

    but it should be

    SCAR Code:
    begin
      repeat
        ClickTheStuff;
    until(IsFKeyDown(3));
    end.

    thats just for any 1 who wants to use the script.Thank you JAD, very much. you will have saved me a lot of boring time. i love you.

  4. #4
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hamel09 View Post
    OOHHH man u rock. i wish i could kiss you. BUT i am a noob at scripting and i found a mistake

    you put

    SCAR Code:
    begin
      repeat
        ClickStuff;
      until(IsFKeyDown(3));
    end.

    but it should be

    SCAR Code:
    begin
      repeat
        ClickTheStuff;
    until(IsFKeyDown(3));
    end.

    thats just for any 1 who wants to use the script.Thank you JAD, very much. you will have saved me a lot of boring time. i love you.
    Lol, np

    And sry about that error. If you weren't good enough at scripting to fix it yourself, I would have told you to go learn to script noob

  5. #5
    Join Date
    Jun 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    for me for some reason it says unknown identifier "coords" how do you fix that and i did find the coords....

  6. #6
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by mulliken2 View Post
    for me for some reason it says unknown identifier "coords" how do you fix that and i did find the coords....
    You need to fill in the coords with what you picked Read a beginner tut through and you should know how to add that to it if you can't figure it out.

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
  •