Results 1 to 9 of 9

Thread: My Tin/Copper Autominer/// Need Help!

  1. #1
    Join Date
    Aug 2008
    Location
    Auckland
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Nearly Finished Copper/Tin Power Miner

    Ok it is now updated, compiles logs in but will not mine the rocks. So could use some help there cheers
    ////////////////////Helped by p1nky!//////////////////////
    ~Tom~

  2. #2
    Join Date
    Jul 2008
    Location
    England
    Posts
    763
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    just put in FindNormalRandoms.
    lol

  3. #3
    Join Date
    Aug 2008
    Location
    Auckland
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You Legend I Love You!
    ~Tom~

  4. #4
    Join Date
    Jul 2008
    Location
    England
    Posts
    763
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol np
    lol

  5. #5
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Ok, first you should have repeats in your main loop so it will continue mining. In your mining procedures, you have this,

    SCAR Code:
    Procedure MineTin;
    begin
     repeat
     If (FindColorSpiralTolerance(x, y, TinColour, MSX1, MSY1,MSX2, MSY2, 3)) or
      (FindColorSpiralTolerance(x, y, TinColour1, MSX1, MSY1,MSX2, MSY2, 3)) Then
    mmouse(x,y,0,0);
    wait(300);
    Mouse(x,y,0,0,true);
    writeln('Found Rock');
    Randoms;
    until(invfull)
    end;

    That means that it will Keep click the rock every 300ms. You need a wait while ming procedure so it does not just keep clicking the rock. There is no need for
    mmouse(x,y,2,2)
    mouse(x,y,3,3,true)

    All's you need is mouse(x,y,2,2,true) That will move the mouse to the position and click. SRL also has an auto loggin. I read the post about FindnormalRandoms. It will not compile unless you have this,
    SCAR Code:
    procedure DeclarePlayers;
    begin
         HowManyPlayers := 1; // Don't edit this one
         NumberOfPlayers(HowManyPlayers);
     
         Players[0].Name    :='Username';
         Players[0].Pass    :='Password';
         Players[0].Nick    :='ass';  // 3-4 letters from your name. No CAPS
         Players[0].Active:= True;
    end;

    There in no reason for activate client when you have SMART
    SRL's autologgin is
    SCAR Code:
    if not loggedin then loginplayer;

    Hope I helped,

    noidea
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  6. #6
    Join Date
    Aug 2008
    Location
    Auckland
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No Idea Thomas helped me with declare players, but when I log in it wont click on the rocks, it will only repeat "found rock" could anyone help with this?
    ~Tom~

  7. #7
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Try this.

    SCAR Code:
    Procedure MineTin;
    begin
      repeat
        If (FindColorSpiralTolerance(x, y, TinColour, MSX1, MSY1,MSX2, MSY2, 3)) or
        (FindColorSpiralTolerance(x, y, TinColour1, MSX1, MSY1,MSX2, MSY2, 3)) Then
        begin
          mmouse(x,y,5,5);
          if isuptext('ine')then
          begin
            Mouse(x,y,0,0,true);
            writeln('Found Rock');
            Randoms;
          end;
        end;
      until(invfull)
    end;
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  8. #8
    Join Date
    Sep 2008
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm keeps stopping for me

  9. #9
    Join Date
    Apr 2008
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice script!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help me to get 240k copper/tin ore
    By Killerdou in forum Mining and Smithing
    Replies: 12
    Last Post: 12-21-2011, 04:31 AM
  2. Buying 3500 tin and copper ore.
    By badandymitch in forum Mining and Smithing
    Replies: 1
    Last Post: 12-25-2007, 12:22 PM
  3. Tin & Copper
    By awesom in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 11-06-2007, 06:15 AM
  4. buying all copper/tin/iron ore
    By Killerdou in forum Mining and Smithing
    Replies: 3
    Last Post: 03-22-2007, 06:41 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
  •