Results 1 to 2 of 2

Thread: OSRS Iron Powerminer

  1. #1
    Join Date
    Feb 2016
    Posts
    14
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Thumbs up OSRS Iron Powerminer

    Built using Aerolib, so if you want to try it out make sure you have the library in your includes.

    Very Basic but relatively efficient powerminer for OSRS.

    At the moment there's no overlay/xpcalc/breaking/antiban or even login
    It just sits there, mines ore, drops when the ore's gone or inv is full.

    Edit:
    instead of the original pixelshift function, I've added a more accurate one which goes based on the position of your pickaxe (using rune head colours)
    Final step of redundancy here would be to cluster the colours here and only use the block closest to the centrePoint (but powermining is mostly secluded)
    Simba Code:
    function isMining:Boolean;
    var
      col_Pick:TColEx;
      pts_Pick:TPointArray;
    begin
    result := false;
    col_Pick.autoCreate([6838846,5589554,6115895,4668970]);
    if col_pick.findAllIn(searchArea,pts_Pick) then
    begin
      //os_smart.__Graphics.DrawTPA(pts_pick,clGreen);
      if (getPixelShiftTPA(random(100)+107,pts_Pick)>0) then
      result:=true;
      if (getPixelShiftTPA(random(100)+107,pts_Pick)>0) then
      result:=true;
      end
    end
    Attached Files Attached Files
    Last edited by Wolfskull; 04-21-2016 at 09:14 AM.

  2. #2
    Join Date
    Feb 2008
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Good Job, good first script!

Thread Information

Users Browsing this Thread

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

Posting Permissions

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