Results 1 to 3 of 3

Thread: !bezo! Power Miner (Alpha!)

  1. #1
    Join Date
    Nov 2006
    Location
    Uk
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default !bezo! Power Miner (Alpha!)

    Hey this is my first script so dnt be 2 harsh plz

    has no anti-randoms/anti-bans at the mo so plzzzz b careful!

    at the moment all it does is mine the rock colour you want and drop when the stated amout is met. I am going to try and make a multiple login soon and add anti-randoms.

    My next step is to add a randomiser for the rock changing and auto login

    thanks to Arrow for and Boreas for the tips!!

    enjoy!

    Code:
    //=======================================================================||
    //                            SUPER MINER by !bezo!                      ||
    //                                 V 0.2                                 ||
    //   HISTORY                                                             ||
    //                                                                       ||
    //   Ver 0.2                                                             ||
    //                                                                       ||
    //    Description:                                                       ||
    //                                                                       ||
    //    Mines chosen rock colour then drops when the load is full          ||
    //    no anti randoms as of yet and am planning to add an auto           ||
    //    login in the next update as well. You must have the runescape      ||
    //    inventory icon show when you press play.                           ||
    ///////////////////////////////////////////////////////////////////////////
    
    program PowerMiner;
    {.include srl/srl.scar}
    {.include SRL/SRL/Skill/Mining.scar}
    
    
    
    
    
    const
            RockChangingInterval = 5000;//how long til u change rock's ( in milli secs)
            RockColour           = 6004931;//Colour of rock,
            //you can use your own or the one give above (copper)
    
    
    
      var
      completions,load : integer;
    
    procedure Orefinding;
      begin
     load:=0
    repeat
      if (findcolor(x,y,RockColour,5,6,516,342))then
       Mmouse(x,y,1,1)
      wait(50);
      Mouse(x,y,1,1,True)
    
      load := load + 1
      wait(RockChangingInterval);
      Until(load = 2) // How many loads you want
        end;
    
    
         procedure DropOre;
    begin
    MouseSpeed:=10
    DropTo(2,28)//Which slots you want to drop
    
    end;
    
      procedure OpenInv;
     begin
    GameTab(4)
      end;
    
    
    
       //
    begin
    SetUpSRL;
    repeat
      completions:=0
    OpenInv
    Orefinding
    DropOre
    completions:=completions+1
       until(completions=28) // how many ores you want to mine per load
    end.
    Last edited by Sir R. M8gic1an; 09-22-2009 at 06:26 PM.

  2. #2
    Join Date
    Oct 2006
    Location
    Finland
    Posts
    433
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    IMO scripting looks kinda cool, but on mining you get way too many randoms, without antirandoms itsp pretty.. useless should I say.

    Add randoms and It will be a great script.

  3. #3
    Join Date
    Nov 2006
    Location
    Uk
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk thanks will add to it soon

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Power miner
    By Kasmember13 in forum First Scripts
    Replies: 10
    Last Post: 01-18-2009, 08:19 PM
  2. help with my power miner...
    By Cazax in forum OSR Help
    Replies: 3
    Last Post: 01-03-2008, 10:25 PM
  3. first power miner, need a little help.
    By JAD in forum OSR Help
    Replies: 3
    Last Post: 02-22-2007, 12:18 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •