Results 1 to 4 of 4

Thread: Clicking

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

    Default Clicking

    Hey I used to script, and then I quit. Im getting back into it but I basically forgot everything. Right now, I just want to make a extremely easy script, one that just clicks, delays about a second, and clicks again. That is IT. How do I do this.

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

    Default

    SCAR Code:
    program Whatever;
    procedure WhateverB;
    begin
    Mouse(coords,coords,2,2,true);
    wait(1000+random(200));
    end;
    begin
    repeat
    WhateverB;
    until(False);
    end.
    just fill in the coords with the spot You could make it look for a color too, but I'd suggest reading a beginner tutorial again to refresh your memory. Welcome back too

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

    Default

    Haha Thanks man. Yeah I'm already reading up on the tuts. I've been doing C++ stuff and PHP/MySQL.

    Edit:: Ugh, it said something like Mouse not found. I just realized I do not have the newest version of SRL or SCAR, but would that effect it?

  4. #4
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    {.include SRL/SRL.scar} after program and SetupSRL; before whateverB at the bottom

    Scripts: Edgeville Chop & Bank, GE Merchanting Aid
    Tutorials: How to Dominate the Grand Exchange

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help with clicking?
    By Kyle Undefined in forum OSR Help
    Replies: 20
    Last Post: 11-12-2008, 07:17 AM
  2. clicking on an npc
    By patman16 in forum OSR Help
    Replies: 3
    Last Post: 07-29-2008, 03:19 PM
  3. Dmt clicking help
    By MetalancA in forum OSR Help
    Replies: 7
    Last Post: 06-11-2008, 04:06 AM
  4. Not Clicking :(
    By skilld u in forum OSR Help
    Replies: 23
    Last Post: 06-09-2008, 10:20 PM
  5. clicking on a NPC
    By legendaryhero90 in forum OSR Help
    Replies: 9
    Last Post: 02-25-2007, 10:53 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
  •