Results 1 to 14 of 14

Thread: Iron Miner-Can be used everywhere

  1. #1
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default Iron Miner-Can be used everywhere

    Do not download out of date

    Hi guys I'm releasing my first script which is an iron ore miner than can be used everywhere. The script has Antiban, which has now been vastly improved since Version 1.1 (use to spam click on the mining guide :P sorry guys).
    This has been my first script that I have made so if their are any issues please post below and I'll fix them up. Plus if you have any suggestions please post below as well.
    So this script will work flawlessly please setup SMART like this:





    Most updated is the furthest one down in the attachments and will also be the highest version number.

    -Version 1.1 updated fail safes made script more reliable (Thanks to Shay)
    -Version 1.2 there are more randomness such as there is a change to either right click or left click on the resource. (Thanks to Yohojo)
    -Version 1.3 fixed the amount of antibans done, made finding the ore better and fixed dropping method.
    Jumped to Version 2 a lot has been improved upon so it only seemed appropriate. If you've used this script in the past and haven't liked it for whatever reason this will definitely be worth you time now.
    -Version 3 added auto responder increased ore finding.
    -Version 4 Basically flawless now, there maybe a few bugs to squash but that should be all. Updated the Ore finding its now a lot more accurate than before.


    If you have any problems with the script post below and I will fix it very quickly.

    -Thanks for using my Iron Miner by Blake thanks to Romy (a mate who made the auto talker) and WT-Fakawi.
    Last edited by Syntax; 10-23-2012 at 12:37 PM.

  2. #2
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    You left your username and password inside the script, or am I getting trolled?
    Edit*
    It's a good try at a first script!
    A few things i'd like to point out though.

    Simba Code:
    Procedure MineOre;
    var x, y: integer;
    begin;
      repeat
      FindNormalRandoms; //You aren't using randoms correctly :p, should be like this -
      {if not FindNormalRandoms then
          if not LoggedIn then
             TerminateScript;
      }

      if FindObj(x, y,'ine', 2832993, 10) then  //if it finds this...
      Mouse(x, y, 2, 2, false); //it'll do this but...
      ChooseOption('ine'); //it'll do this regardless of finding it!
        Wait(3500+random(1500)); //same thing with it!
        repeat
       Until not IsUpText('ron') or (InvFull);
        until(InvFull);
        {So, what we have here is technically called an infinite loop, it'll go on as long as it can.
          It's also a bad piece of code (No offence :p), since what it does is it's in a repeat/until loop two times over!}

        if (InvFull) then DropAll;
      end;

    Your antiban is also a bit sporradic

    Simba Code:
    [B]rocedure AntiBan;
    begin
      if(not(LoggedIn))then
      Exit;
      FindNormalRandoms;
      case Random(8) of
      0:
      begin
        HoverSkill('Mining', false);
        wait(2453+Random(432));
      end;
      1: PickUpMouse;
      2:
      begin
        MakeCompass('N');
        wait(100+random(133));
        MakeCompass('W');
        wait(50+random(133));
        MakeCompass('N');
        FindNormalRandoms;
      end;
     end;
    end;
    While not badly coded, it's a bit repetitive and it'll do antibans more than it'll mind

  3. #3
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by Shay View Post
    You left your username and password inside the script, or am I getting trolled?
    Thanks for reminding me, although its only my script testing account.
    Last edited by Syntax; 05-29-2012 at 02:07 PM.

  4. #4
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by Shay View Post
    You left your username and password inside the script, or am I getting trolled?
    Edit*
    It's a good try at a first script!
    A few things i'd like to point out though.

    Simba Code:
    Procedure MineOre;
    var x, y: integer;
    begin;
      repeat
      FindNormalRandoms; //You aren't using randoms correctly :p, should be like this -
      {if not FindNormalRandoms then
          if not LoggedIn then
             TerminateScript;
      }

      if FindObj(x, y,'ine', 2832993, 10) then  //if it finds this...
      Mouse(x, y, 2, 2, false); //it'll do this but...
      ChooseOption('ine'); //it'll do this regardless of finding it!
        Wait(3500+random(1500)); //same thing with it!
        repeat
       Until not IsUpText('ron') or (InvFull);
        until(InvFull);
        {So, what we have here is technically called an infinite loop, it'll go on as long as it can.
          It's also a bad piece of code (No offence :p), since what it does is it's in a repeat/until loop two times over!}

        if (InvFull) then DropAll;
      end;

    Your antiban is also a bit sporradic

    Simba Code:
    [B]rocedure AntiBan;
    begin
      if(not(LoggedIn))then
      Exit;
      FindNormalRandoms;
      case Random(8) of
      0:
      begin
        HoverSkill('Mining', false);
        wait(2453+Random(432));
      end;
      1: PickUpMouse;
      2:
      begin
        MakeCompass('N');
        wait(100+random(133));
        MakeCompass('W');
        wait(50+random(133));
        MakeCompass('N');
        FindNormalRandoms;
      end;
     end;
    end;
    While not badly coded, it's a bit repetitive and it'll do antibans more than it'll mind

    I will fix up the mining procedure, thanks for the help mate
    Last edited by Syntax; 06-03-2012 at 12:29 PM.

  5. #5
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Since being updated to version 2, the script has now been working flawlessly for me for 2 hours at al-kharid mine (and is still going). Any bugs pm me the error message from debug box or post here.

  6. #6
    Join Date
    Jan 2012
    Posts
    550
    Mentioned
    2 Post(s)
    Quoted
    177 Post(s)

    Default

    Does this mining everywhere include mining in the dwarven mines and banking in the dungeoneering thing that is there?

  7. #7
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by Thanatos View Post
    Does this mining everywhere include mining in the dwarven mines and banking in the dungeoneering thing that is there?
    Not at the moment, I will be expanding out into newer and better things. Still learning and as i learn better things the script will be getting improvements. For now though, its a flawless iron miner and I will be making the script faster.

  8. #8
    Join Date
    Jun 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    LOL. Won't mine iron.. randomly mines clay btw.

  9. #9
    Join Date
    Oct 2011
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    needs faster ore detecting
    :P

  10. #10
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by romy View Post
    needs faster ore detecting
    :P
    Improved in V3, report back if its better.
    Last edited by Syntax; 07-07-2012 at 03:07 AM.

  11. #11
    Join Date
    Mar 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It won't mine nothing...

  12. #12
    Join Date
    Nov 2011
    Location
    Australia
    Posts
    418
    Mentioned
    2 Post(s)
    Quoted
    86 Post(s)

    Default

    Quote Originally Posted by omfgomfg View Post
    It won't mine nothing...
    Sorry about this, today I updated to version 4 and it shouldn't do this anymore. Make sure your settings are the same as the ones i posted.

  13. #13
    Join Date
    Aug 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    when i try to run it says invalid numbers on line 130

  14. #14
    Join Date
    Aug 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by ninjaking26 View Post
    when i try to run it says invalid numbers on line 130
    Mine does the same thing on anything that says "sendkeys"
    >.<

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
  •