Results 1 to 10 of 10

Thread: Auto Clicker

  1. #1
    Join Date
    Feb 2006
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Clicker

    This is a autoclicker I have found, I believe it is Dark Sniper's?


    program autoclicker;

    const
    color=6717590 ;
    seconds=1;

    var
    x, y:integer;

    begin
    repeat
    activateclient;
    if(color > 0)then
    findcolorspiral(x, y, color, 0, 0, 500, 300)
    if(color > 0)then
    movemouse(x, y)
    getmousepos(x, y)
    holdmouse(x, y, true)
    wait(40+random(50))
    releasemouse(x, y, true)
    wait(seconds * 1000)
    until(false)
    end.

    Hopefully you will find a use for it
    =}

  2. #2
    Join Date
    Feb 2006
    Posts
    406
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    er.. good job on your first script?
    you're making progress
    i think you need some begins and ends in there some where though...

    use code tags and such, and also use a better mouse procedure

    like the crazy one with bezier splines

  3. #3
    Join Date
    Feb 2006
    Location
    Australia
    Posts
    628
    Mentioned
    15 Post(s)
    Quoted
    105 Post(s)

    Default

    I recall someone making this script for you.. I just don't remember who it was...

  4. #4
    Join Date
    Feb 2006
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    EDIT*: I am sorry, I took the wrong autoclicker out of my file, this one was not mine. I am again, very sorry.
    =}

  5. #5
    Join Date
    Feb 2006
    Location
    Australia
    Posts
    628
    Mentioned
    15 Post(s)
    Quoted
    105 Post(s)

    Default

    That's fine As long as you have given credit, which you have

  6. #6
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    if(color > 0)then
    0 is a color, Black.

    You could do, if(color > -1)then

  7. #7
    Join Date
    Mar 2006
    Location
    Igloo #201702,Canada
    Posts
    188
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So does this just click in one spot?

  8. #8
    Join Date
    Feb 2006
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, depending on the color you choose.

  9. #9
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    MoveMouse = ban.

    Use SRL?

    Code:
    {.Include SRL/SRL.scar}
    Const
     Color = 0;
    
    begin
     if(Color < 0)then
      Terminatescript;
      SetupSRL;
     repeat
       if(FindColorSpiral(x, y, color, MSX1, MSY1, MSX2, MSY1))then
     begin
       Mouse(x, y, 3, 3, true);
       wait(20 + random(40));
     end;
      wait(50 + random(20));
     until(false);
    end.

  10. #10
    Join Date
    Mar 2006
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it doenst work can someone help me

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Auto clicker
    By hamel09 in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 07-14-2007, 12:08 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •