quick easy request

Discussion in 'Script Requests' started by daweazel, Apr 16, 2009.

quick easy request
  1. Unread #1 - Apr 16, 2009 at 4:52 AM
  2. daweazel
    Referrals:
    0

    daweazel Guest

    quick easy request

    i just need a basic color clicker. needs to be a random number of clicks. just gonna be doing some powermining with me at the comp so i can do randoms or watever else. no idea how to program this stuff so i figure i would ask for something as basic as it gets.
     
  3. Unread #2 - Jun 6, 2009 at 9:00 PM
  4. lordy noob
    Joined:
    Jan 4, 2006
    Posts:
    22
    Referrals:
    0
    Sythe Gold:
    0

    lordy noob Newcomer

    quick easy request

    Code:
    Const                                                                                                                                   //
    color = 15912884; //color of rock
    loops = 5;    //how many times it will click the rock before stopping
    
    var x,y,l:integer;
    
    procedure Mine;
    begin
    if(FindColorSpiral(x,y,Color,2,2,1200,800))then
    begin
    l:= l + 1
    MoveMousespline(x,y,2,2);
    clickmouse(x,y,true);
    wait(1000)
    end else
    end;
    
    begin
    repeat
     Mine;
    until(l = loops)//if you want it to click random number of clicks, change the "loop" to "random(100)"
    end.            //then it will choose a random number between 0 and 99
    
    didnt test it on runescape. it might click all over the places because it might find the same color from walls ect.
     
  5. Unread #3 - Jun 11, 2009 at 12:39 PM
  6. mr.lucifer
    Joined:
    Apr 29, 2005
    Posts:
    288
    Referrals:
    0
    Sythe Gold:
    0

    mr.lucifer Forum Addict
    Banned

    quick easy request

    Const //
    color = 15912884; //color of rock
    loops = 5; //how many times it will click the rock before stopping

    var x,y,l:integer;

    procedure Mine;
    begin
    if(FindColorSpiral(x,y,color,2,2,1200,800))then
    begin
    l:= l + 1
    MoveMousespline(x,y,2,2);
    clickmouse(x,y,true);
    wait(1000)
    end else
    end;

    begin
    repeat
    Mine;
    until(l = loops)//if you want it to click random number of clicks, change the "loop" to "random(100)"
    end. //then it will choose a random number between 0 and 99
     
< [REQUEST] - Current Version of an Essence Miner | high alcher w/ anti-randoms etc. >

Users viewing this thread
1 guest


 
 
Adblock breaks this site