Results 1 to 3 of 3

Thread: Help!! How do i make this keep clicking

  1. #1
    Join Date
    Feb 2007
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Help!! How do i make this keep clicking

    Could anyone help me i need help i've made and auto clicker and it only clicks when i press the hotkey button could anyone help me?

    This is my script:

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

    procedure click;
    begin
    if(IsFKeyDown(4))then
    begin
    GetMousePos(x,y);
    MMouse(x,y,0,0);
    mouse(x,y,0,0,true);
    end;
    end;

    begin
    SetupSRL;
    repeat
    click;
    until(IsFKeyDown(12));
    end.

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

    Default

    Just take the IsFKeyDown thing and it will work.

  3. #3
    ronny.m.p Guest

    Default

    or use a repeat loop if you mean what i think you do..

    EDIT: If you don't know what i mean then try this:

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

    procedure click;
    begin
    if(IsFKeyDown(4))then
    begin
    repeat
    GetMousePos(x,y);
    MMouse(x,y,0,0);
    mouse(x,y,0,0,true);
    until(IsFKeyDown(12));
    end;
    end;

    begin
    SetupSRL;
    click;
    end.

    I dont recommend useing this in rs though

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help!! How do i make this keep clicking
    By PheteyGee in forum OSR Help
    Replies: 5
    Last Post: 02-22-2009, 01:02 AM
  2. Challenge make a intermediate program, Tell me something to make.
    By ShowerThoughts in forum News and General
    Replies: 9
    Last Post: 09-22-2008, 08:04 PM
  3. clicking on an npc
    By patman16 in forum OSR Help
    Replies: 3
    Last Post: 07-29-2008, 03:19 PM
  4. clicking
    By Splicer16 in forum OSR Help
    Replies: 13
    Last Post: 05-04-2008, 08:41 AM
  5. Help With Clicking DTM
    By Esteban in forum OSR Help
    Replies: 11
    Last Post: 06-05-2007, 07:54 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
  •