Results 1 to 3 of 3

Thread: Firebrand's Autominer (Need Help)

  1. #1
    Join Date
    Dec 2007
    Location
    New Zealand
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Firebrand's Autominer (Need Help)

    Ok, heres my script and I need a bit of help
    SCAR Code:
    procedure FindRocks;
    begin
         repeat
              Drop := true;
              FindNormalRandoms;
              FindObjCustom(x, y, ['Rock'], [orecolour01,orecolour02], 15)
              GetMousePos(x, y);
              Mouse(x, y, 4, 4, false);
              ChooseOption('Mine')
              Wait(timeperrock)
         until InvFull;
               if InvFull then
               loadstodo := loadstodo + 1
               if Drop = true then
                  begin
                       FindNormalRandoms;
                       DropToPosition(2,28);
    end;

    As you can see it is a very simple script and it only took about and hour to write the whole thing. All I need is a simple function or command to tell it keep on mining till it has completed the set amount of loads. Also I need a better command then FindObjCustom to find the ore's because it's qutie inaccurate. I put in the colours for Iron ores and it started on them but then start mining copper

    Thanks to SonsOfSheep for the Great Siggy ^^


  2. #2
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Make a const, like

    "Const Loads = 15;"

    and in your mainloop do

    something like

    SCAR Code:
    Repeat
      FindRocks;
      I := I + 1;
    Until(I >= Loads);

  3. #3
    Join Date
    Dec 2007
    Location
    New Zealand
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Thanks a heap, I had already made a constant named loads Just needed to figure out how to implement it

    Now I am onto properly implementing Anti-Randoms and Anti-ban, What is the best way to find an Ore ?

    Thanks to SonsOfSheep for the Great Siggy ^^


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need help with an autominer.
    By Maox in forum OSR Help
    Replies: 12
    Last Post: 01-11-2008, 06:46 AM
  2. Firebrand's First Script
    By Firebrand in forum First Scripts
    Replies: 1
    Last Post: 01-01-2008, 04:08 AM
  3. My First AutoMiner
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 03-03-2007, 06:56 PM

Posting Permissions

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