Results 1 to 18 of 18

Thread: Click Script

  1. #1
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Click Script

    I request a scrip that clicks once every x mili seconds or w/e for y times in the spot you leave it.

  2. #2
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

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

    begin
      SetupSRL;
        repeat
          if IsUpText('ake') then
          begin
            GetMousePos(x,y);
            Mouse(x,y,1,1,true);
            Wait(5000);
          end;
          wait(50);
        until(false)
    end.
    Someone else made this before. Just put your mouse where the respawn is (on top of your player) and when it sees "take" it will take it.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  3. #3
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can this work out of runescape?

  4. #4
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Nope.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

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

    Default

    cant like just click in one spot x times ie on a button on the screen

  6. #6
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    program New;
    const
      x1 = 50; //x coordinate you want it to click
      y1 = 50; //y coordinate you want it to click
      t  = 1000; //how many ms to wait in between clicks
      a  = 0; //how many times to click; 0 = infinity

    var
      i: integer;
     
    begin
        repeat
          ClickMouse(x1,y1,true);
          Wait(t);
          if(a <> 0)then
            i := i + 1;
          if(isfkeydown(12))then
            TerminateScript;
        until(i > a)
    end.

    Press F12 to exit.
    Interested in C# and Electrical Engineering? This might interest you.

  7. #7
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    failed when compileing :O?

  8. #8
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Try it now.
    Interested in C# and Electrical Engineering? This might interest you.

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

    Default

    i just have to put in the x and y and ms at top?

  10. #10
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It worked I realized you edited your post :P

  11. #11
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it only works for aout 10 clicks then...it goes to the other side of screen and keeps clicking...

  12. #12
    Join Date
    Jun 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how would i go about editing
    program New;
    const
    x1 = 50; //x coordinate you want it to click
    y1 = 50; //y coordinate you want it to click
    t = 1000; //how many ms to wait in between clicks
    a = 0; //how many times to click; 0 = infinity

    var
    i: integer;

    begin
    repeat
    ClickMouse(x1,y1,true);
    Wait(t);
    if(a <> 0)then
    i := i + 1;
    if(isfkeydown(12))then
    TerminateScript;
    until(i > a)
    end.

    for it to not move to the other side of the screen after 5-10 clicks

  13. #13
    Join Date
    Mar 2007
    Location
    Maryland, USA
    Posts
    184
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Heres one

    SCAR Code:
    Program Banner;

    begin
     repeat
      Writeln ('Ima gonna get banned')
      MoveMouse(whereever ur runescape guy is)
      ClickMouse(wherever ur runescape guy is,true)
     until(false)
    end.

    lol thatll get ya banned


    EDIT: THAT DUDE QUAD POSTED?!?!?!

  14. #14
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    y not just

    SCAR Code:
    wait(3000)//to let you get ur mouse in the right spot
    repeat
    clickmouse(y,x,true);
    until false

    then just move your mouse on the respawn spot
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  15. #15
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Because it's not for RS.

    @budgeda: Go to 'Client -> Forget Specified Window', then pick the coords of the place you want to click. DON't SET A CLIENT WINDOW!
    Interested in C# and Electrical Engineering? This might interest you.

  16. #16
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    @ BUDGEDA, Please learn to use the
    EDIT
    Button.....Lower left hand corner of your post...it is common courtesy, if you are the last person to post and wish to say more, that you edit your last existing post..instead of posting again...and again...and again...and yet AGAIN....

    Not to mention it's run of the rules here.....Bumping and Grave Digging. Very annoying indeed.

    Also, if you are going to report a post, Please make sure it is for a matter that is worthy of someone taking the time to come and check it out...

    @Runemaker...If you're gonna take the time to edit a post to point out the obvious, Please take the time to point them to why you are stating what you were

    ~RAM


  17. #17
    Join Date
    Jun 2007
    Location
    I'm not sure...
    Posts
    581
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here, I wrote this in AutoIt because booleans auto update in autoit XD

    Code:
    HotKeySet("{ESC}","Escape")
    
    Func Escape()
    	Exit
    EndFunc	
    
    Sleep(5000)
    While 1	
    	MouseClick("Left")
    WEnd
    Just so u dont think theres visuses or anything.
    ESC to end the script.
    Lemme compile it...
    ---------------------------------------------------------


    Pm me if you need any math functions made. Me = l0ving t3h mathz

    ---------------------------------------------------------

  18. #18
    Join Date
    Mar 2007
    Posts
    674
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    budgeda u can try to make this yourself, really its not that hard.

    Just check out some of the tuts here

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. how do i click?
    By shrubie1 in forum OSR Help
    Replies: 4
    Last Post: 05-29-2008, 09:55 PM
  2. Request your 1 walk click or less script here!!!
    By ShowerThoughts in forum RS3 Outdated / Broken Scripts
    Replies: 6
    Last Post: 02-18-2008, 06:35 PM
  3. Find a Chest & Left Click,Right Click
    By yanix in forum OSR Help
    Replies: 3
    Last Post: 10-03-2007, 06:40 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
  •