Results 1 to 17 of 17

Thread: SMART Autoclicker

  1. #1
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default SMART Autoclicker

    I'm looking for autoclicker that will pick certain color and click on it three times in a second.
    Just basic autoclicker which would use SMART plugin so i can work other things on my pc while autoing.

    I was looking on forum but i can't find this kind of script, I understand it's not hard to make script, but i don't have any idea how to work in SCAR.

    So if anyone has any links to similar script or would be so nice to type it here, I would be thankfull.

    Peace.

    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  2. #2
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    umm why would you need to click something three times a second in RS? unless you are trying to get your account banned...
    METAL HEAD FOR LIFE!!!

  3. #3
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I need it for some program testing.

    Could you write this script?
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  4. #4
    Join Date
    Oct 2006
    Location
    finland, helsinki
    Posts
    2,501
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    Var
      X, Y, Mark: Integer;
     
    Begin
      Repeat
        Wait(1);
        If(IsMouseButtonDown(True))Then
        Begin
          Mark := GetSystemTime;
          If(IsMouseButtonDown(True))Then
          Repeat
            Wait(1);
          Until( Not IsMouseButtonDown(True) )
          Else Continue;
          Wait(100);
          If(IsMouseButtonDown(True))Then
          Repeat
            Wait(1);
          Until( Not IsMouseButtonDown(True) )
          Else Continue;
          Wait(100);
          If(IsMouseButtonDown(True))Then
          Repeat
            Wait(1);
          Until( Not IsMouseButtonDown(True) )
          Else Continue;
          GetMousePos(X, Y);
          Writeln('Color Picked: '+Inttostr(GetColor(X, Y))+' at (' +Inttostr(X)+', '+Inttostr(Y)+ ')');
        End;
      Until(False);
    End.

    this?

    Code:
    • Narcle: I recall Jukka releasing a bunch of scripts like this before... Its how he rolls I think. rofl
    • Solarwind: Dude, you are like... t3h s3x.
    • Hy71194: JuKKa you're a machine! You released 3 scripts in 10 minutes! :O
    • benjaa: woah.... Jukka is the man Guildminer pwns all
    • NaumanAkhlaQ: And JuKKa Is my Her0!

  5. #5
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Unless it is going to be for RS, SMART will not be an option...

    Jukka I think he wants it to find a color then click it three times, atleast i think...

    so:

    SCAR Code:
    Program New;

    var
      x,y,i: Integer;

    const
       Color = 0; // put your color here

    begin
      repeat
        if(FindColor(x,y,Color,0,0,700,700))then // I dont know what coordinates you need...
        for i := 0 to 2 do
        begin
          ClickMouse(x,y,True);
          Wait(333);
        end;
      until(IsFKeyDown(1));  // Hit F1 to stop the script
    end.
    METAL HEAD FOR LIFE!!!

  6. #6
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    program FrugooScape;
    {.include SRL/SRL.scar}

    const
    TargColor = ; //color of the ranging target(yellow dot in center)
    RandomWaitTime = ; //a random amount of time to wait
    TimesToClick = ; //amount of times to click the target
    dodebug = 2;


    Procedure Debug(reason:string); //
    begin
    case DoDebug of
    1: Wait(1);
    2: Disguise(reason);
    end;
    end;


    var
    i, x, y : integer;


    procedure Report;
    var TempI:Integer;
    begin
    ClearDebug;
    TempI:= i;
    case Random(3) of
    0: debug(''+IntToStr(TempI)+' times clicked.');
    1: debug(''+TimeRunning);
    2: Disguise('iTunes');
    end;
    Wait(1);
    end;

    procedure findnclick;
    begin
    i:= 0;
    begin
    repeat
    i:= i + 1;

    if(FindColor(x,y,targcolor,100,100,800,800)) then //finds targetcolor
    begin

    wait(300 +(randomwaittime)) //this is where the waittime comes in
    movemousesmooth(x,y);
    report;
    wait(500+random(100)); //another random wait
    clickmouse(x,y,true);
    end;
    until(not(findcolor(x,y,targcolor,100,100,800,800) ));
    end;
    end;

    begin
    cleardebug;
    setupsrl;
    case Random(1) of
    0: Disguise('iTunes');
    end;
    repeat
    findnclick;
    until(false);
    end.
    I mean't something more similar to this but it has to use SMART so i can do other things while runing this script.
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  7. #7
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by gerauchert View Post
    Unless it is going to be for RS, SMART will not be an option...

    Jukka I think he wants it to find a color then click it three times, atleast i think...

    so:

    SCAR Code:
    Program New;

    var
      x,y,i: Integer;

    const
       Color = 0; // put your color here

    begin
      repeat
        if(FindColor(x,y,Color,0,0,700,700))then
        for i := 0 to 2 do
        begin
          ClickMouse(x,y,True);
          Wait(333);
        end;
      until(IsFKeyDown(1));  // Hit F1 to stop the script
    end.
    Ok, this is quite good but what to include.

    Could you write me whole thing with includes at the top.
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  8. #8
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by dad0 View Post
    Ok, this is quite good but what to include.

    Could you write me whole thing with includes at the top.
    Ok. Unless this is for the LEGIT RUNESCAPE CLIENT you CANNOT USE SMART. And if this is for the legit rs client then you WILL BE BANNED.

    What else did you need? What includes are you talking about? That script I wrote you will run as it is... just need to imput the color you want or the coords you want.
    METAL HEAD FOR LIFE!!!

  9. #9
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by gerauchert View Post
    Ok. Unless this is for the LEGIT RUNESCAPE CLIENT you CANNOT USE SMART. And if this is for the legit rs client then you WILL BE BANNED.

    What else did you need? What includes are you talking about? That script I wrote you will run as it is... just need to imput the color you want or the coords you want.
    I meant this:

    {.include SRL/SRL/Misc/Smart.scar}

    and this

    SmartSetupex(154, False, False);
    SetTargetDC(SmartGetDC);
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  10. #10
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    he wants to autoclick on a rs private server... sad
    ~Hermen

  11. #11
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by dad0 View Post
    I meant this:

    {.include SRL/SRL/Misc/Smart.scar}

    and this

    SmartSetupex(154, False, False);
    SetTargetDC(SmartGetDC);
    Well its your account, do with it as you will i guess good luck having it last more than one time logging in... but ask and you shall recieve.
    SCAR Code:
    Program New;
    {.include SRL\SRL\misc\smart.scar}
    {.include SRL\SRL.scar}

    var
      x,y,i: Integer;
     
    const
       Color = 0; // put your color here
       World = 154; // world number

    begin
      SmartSetupex(World, False, False);
      SetTargetDC(SmartGetDC);
      repeat
        Wait(100);
      until(SmartReady);
      SetupSRL;
      repeat
        if(FindColor(x,y,Color,msx1,msy1,msx2,msy2))then // I dont know what coordinates you need...
        for i := 0 to 2 do
        begin
          ClickMouse(x,y,True);
          Wait(333);
        end;
      until(IsFKeyDown(1));  // Hit F1 to stop the script
    end.
    METAL HEAD FOR LIFE!!!

  12. #12
    Join Date
    Jul 2007
    Location
    Players[CurrentPlayer].Loc:='Bank'
    Posts
    875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    he wants to autoclick on a rs private server... sad
    Why is that sad? It's still runescape, and its still cheating.
    Quote Originally Posted by sirlaughsalot
    .... Obama had the devil jump out of his ass, run and stab Hillary in the back...
    ILMMTYAEAFHPY.

  13. #13
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by dad0 View Post
    I need it for some program testing.

    Could you write this script?
    Quote Originally Posted by dad0 View Post
    I meant this:

    {.include SRL/SRL/Misc/Smart.scar}

    and this

    SmartSetupex(154, False, False);
    SetTargetDC(SmartGetDC);
    SMART is not a browser nor a Virtual Machine type program. You can not do program testing like I think you want it to do. Its only meant to run Runescape nothing else.
    If you want to test your program while running other things set up a Virtual Machine.

    Quote Originally Posted by hermpie View Post
    he wants to autoclick on a rs private server... sad
    I don't believe he said that anywhere...
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  14. #14
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Narcle View Post
    SMART is not a browser nor a Virtual Machine type program. You can not do program testing like I think you want it to do. Its only meant to run Runescape nothing else.
    If you want to test your program while running other things set up a Virtual Machine.


    I don't believe he said that anywhere...
    Ok, is there any tutorial how to set up VM?

    Ty for the script one who posted.
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

  15. #15
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by dad0 View Post
    Ok, is there any tutorial how to set up VM?

    Ty for the script one who posted.
    yw, and look in the section for virtual machines... i think there is a whole section devoted to stuff about them. And there is like 2-3 tuts on setting them up.
    METAL HEAD FOR LIFE!!!

  16. #16
    Join Date
    Sep 2007
    Posts
    501
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by gerauchert View Post
    yw, and look in the section for virtual machines... i think there is a whole section devoted to stuff about them. And there is like 2-3 tuts on setting them up.
    the tuts are in teh setting up your computer to auto section under tutorial island and the section for vms and other computer related concerns is under srl faq, if anybody wanted to know

  17. #17
    Join Date
    Oct 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, ty guys, now i understand how SMART thingy works.
    http://i83.photobucket.com/albums/j3.../feb06copy.png

    Give a man a fish and you feed him for a day. Teach him to use the Net and he won't bother you for weeks.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. FrugooScape Autoclicker
    By nhstarter10 in forum First Scripts
    Replies: 28
    Last Post: 01-31-2009, 08:41 PM
  2. Anti-Ban Autoclicker?
    By anti in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 06-19-2007, 12:09 PM
  3. help with this autoclicker!
    By seany in forum OSR Help
    Replies: 7
    Last Post: 01-22-2007, 11:38 PM
  4. help with this autoclicker!
    By seany in forum OSR Help
    Replies: 0
    Last Post: 01-22-2007, 09:24 PM

Posting Permissions

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