Adblock breaks this site

quick easy request

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

  1. daweazel

    daweazel Guest

    Referrals:
    0
    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.
     
  2. lordy noob

    lordy noob Newcomer

    Joined:
    Jan 4, 2006
    Posts:
    22
    Referrals:
    0
    Sythe Gold:
    0
    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.
     
  3. mr.lucifer

    mr.lucifer Forum Addict
    Banned

    Joined:
    Apr 29, 2005
    Posts:
    288
    Referrals:
    0
    Sythe Gold:
    0
    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. >


 
 
Adblock breaks this site