Results 1 to 13 of 13

Thread: mining help

  1. #1
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default mining help

    I'm making a rimmington iron power miner and i want the script to mine the rock in humans way which is by using a pattern. But i don't know how to make my pattern here is my pattern i want :

    |__|--> 3rd rock


    __ |__|--> 2nd rock
    |__|-->1st rock to mine

    |__|--> 4rth rock
    u get the picture, any ideas?

  2. #2
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1. Log on RuneScape
    2. Print Screen
    3. Upload
    4. ?????
    5. PROFIT!

  3. #3
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dunno how to put pictures on forms:O

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Upload it onto imageshack/photobucket and then take the link and do [ IMG]link.com/something.jpg[ /IMG] (without the space, of course) and post.

  5. #5
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


    best i cud do:O

  6. #6
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    And which ones fo you want to mine? Just 1, 2, and 4?

  7. #7
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I want to mine all in the order given 1 2 3 4

  8. #8
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well hmm. You could make a TPA probably, but I didn't sleep last night, so I'd do it wrong, most likely. But the info will be good for other people to help.

  9. #9
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    aw well thx for ur time cud u give me the idea in general i can do tpa's :P

  10. #10
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Make the points of the rocks on the Main Screen, and then you'll know where you are. You should be able to click the rocks you want from there.

  11. #11
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    but by applying what can i click the rocks distance or how maybe i understood u wrong plz elaborate more?

  12. #12
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If it finds the TPA then it'll click the first point. Then the second point. Then the third, then the fourth.. You could do a DDTM, too, I think.

  13. #13
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Ian was right:

    SCAR Code:
    program New;
    {.Include SRL/SRL.Scar}
    {.Include SRL/SRL/Misc/Debug.Scar}


    Var x, y : Integer;

       
    Function HumanRockFinder(Number : Byte) : Boolean;
    Var
      TPA : TPointArray;
      ATPA : Array Of TPointArray;
      TB : TBox;
    Begin
      FindColorsTolerance(TPA, 2371405, MSX1, MSY1, MSX2, MSY2, 8);
      ATPA := TPAToATPAEx(TPA, 30, 35);
      SortATPAFromFirstPoint(ATPA, Point(205, 165));
      TB := GetTPABounds(ATPA[Number-1]);
      MouseBox(TB.X1, TB.Y1, TB.X2, TB.Y2, 1);
    End;

    Begin
      SetupSRL;
      HumanRockFinder(1);
    End.

    Will act out according to your pic.

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
  •