Page 2 of 2 FirstFirst 12
Results 26 to 43 of 43

Thread: SRL Power Miner

  1. #26
    Join Date
    Jul 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by NCDS View Post
    I'm assuming your PC is pretty outdated? No reason why this would be a resource hog, other than the fact it uses smart (). My desktop is ~10 years old and it runs just fine (for a 10 yr. old PC).

    Thanks for the proggy!

    I'm implementing custom object finding now, just fine tuning it atm. Version 2.0 will be up tonight or tomorrow, at which time I will make sure the potions are working for you as well.
    On an old PC at the moment, yes. If I run only this then it's awesome. =)
    Would be nice if you got JuJu working. =P Will you also implement drinking juju?

    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    Player: Tuffguy;
    Active: True;
    Time worked: 27 min 3 sec;
    Ore: Iron;
    Ore mined: 435;
    ~ p/h: 964;
    Experience gained: 15225;
    ~ p/h: 33753;
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

    e:
    Found it has clicked the iron ore on the ground ~30 minutes in.
    loot.png
    Last edited by 5256552; 08-27-2015 at 06:30 PM.

  2. #27
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by 5256552 View Post
    On an old PC at the moment, yes. If I run only this then it's awesome. =)
    Would be nice if you got JuJu working. =P Will you also implement drinking juju?
    I probably won't implement drinking the potions right away as I have other things to work on, but I will get it to register when it's already using a potion for you.
    Quote Originally Posted by 5256552 View Post
    e:
    Found it has clicked the iron ore on the ground ~30 minutes in.
    loot.png
    I had that happen once early in development, but not since. I've just pushed version 2.0 which includes a different, more efficient object finding method. Hopefully that will prevent it from happening again. Unfortunately I haven't had much time to retest the JuJu potion chat search yet, but that's not very difficult to do quickly later tonight.

    @Incurable;
    Simba Code:
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    Player: ;
    Active: True;
    Time worked: 25 min 12 sec;
    Ore: Iron;
    Ore mined: 319;
    ~ p/h: 759;
    Experience gained: 11165;
    ~ p/h: 26574;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player: ERR;
    Active: True;
    Time worked: 20 min 47 sec;
    Ore: Iron;
    Ore mined: 214;
    ~ p/h: 618;
    Experience gained: 7490;
    ~ p/h: 21620;
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    Both running at VEM very nicely. I had to pause the second guy for a minute, that's why the /hr stats are low.


    I've also made it standard for this to be zoomed out all the way and highest angle. Seems to be working good from what I've tested, but let me know if you guys find any issues with it.

  3. #28
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    Looking good mate, will give it another go for you.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

  4. #29
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Last nights report from VEM..
    Simba Code:
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    Player: ;
    Active: True;
    Time worked: 4 hr 28 min 10 sec;
    Ore: Iron;
    Ore mined: 3428;
    ~ p/h: 767;
    Experience gained: 119980;
    ~ p/h: 26844;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Player: ERR;
    Active: True;
    Time worked: 4 hr 14 min 57 sec;
    Ore: Iron;
    Ore mined: 2644;
    ~ p/h: 622;
    Experience gained: 92540;
    ~ p/h: 21777;
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

    I don't think it's the best xp/hr (depends on how many people are there), but it certainly works now.

  5. #30
    Join Date
    May 2011
    Location
    In an Island.
    Posts
    1,413
    Mentioned
    2 Post(s)
    Quoted
    149 Post(s)

    Default

    I think there should be added some antiban, even when you clicking at the rock. I noticed that the character clicks always at the brown part, and for who plays legits, they click at the whole rock. Perhaps something to be seen and revised.
    Of course I don't know how Jagex tracks us down, but this would be a start.
    ''If you want something you've never had, you have to do something you've never done''


    total leve 2715/1b exp +... exterminated.

  6. #31
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by onilika View Post
    I think there should be added some antiban, even when you clicking at the rock. I noticed that the character clicks always at the brown part, and for who plays legits, they click at the whole rock. Perhaps something to be seen and revised.
    Of course I don't know how Jagex tracks us down, but this would be a start.
    As it is, the script searches for the rocks, separates and sorts the arrays, then clicks randomly within the bounds of the array, using mouseBox();

    It's possible that the sort method is a little too strict atm, as I was testing for VEM last, which has a lot of similar colors so it needed to be strict. That being said, I can almost guarantee there is nothing to worry about here, but I can look into it if it makes you feel better.

    Where were you running the script?

    There is also a constant users can edit..
    Simba Code:
    // User defined constants
      untilAntiban = 5; //minimum minutes between anitban routines (plus random 50%)
    for actual antiban, not clicking randomness.

  7. #32
    Join Date
    May 2011
    Location
    In an Island.
    Posts
    1,413
    Mentioned
    2 Post(s)
    Quoted
    149 Post(s)

    Default

    Quote Originally Posted by NCDS View Post
    As it is, the script searches for the rocks, separates and sorts the arrays, then clicks randomly within the bounds of the array, using mouseBox();

    It's possible that the sort method is a little too strict atm, as I was testing for VEM last, which has a lot of similar colors so it needed to be strict. That being said, I can almost guarantee there is nothing to worry about here, but I can look into it if it makes you feel better.

    Where were you running the script?

    There is also a constant users can edit..
    Simba Code:
    // User defined constants
      untilAntiban = 5; //minimum minutes between anitban routines (plus random 50%)
    for actual antiban, not clicking randomness.
    I have been using all day at falador, west to the western bank.
    I wanted to try at the piscatoris place, but wasn't functioning properly.
    Also, some places, like the one I was using, require a little more zoom so the script can find the rocks. But I edited that part of the code.
    I would suggest adding granite support, but I don't even have an enchanted tiara haha
    lvl68 - 80 will take days
    ''If you want something you've never had, you have to do something you've never done''


    total leve 2715/1b exp +... exterminated.

  8. #33
    Join Date
    Sep 2015
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    It logs in, selects world, then pans the camera before clicking on my skills, then it selects my inventory and the mouse stop between the inventory icon and the map. And it dose nothing. I'm at went falador mine trying to mine iron, and I've also tried coal in the mining guild.

  9. #34
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by Limbothefirst View Post
    It logs in, selects world, then pans the camera before clicking on my skills, then it selects my inventory and the mouse stop between the inventory icon and the map. And it dose nothing. I'm at went falador mine trying to mine iron, and I've also tried coal in the mining guild.
    Please make sure you have everything setup properly as shown here.

  10. #35
    Join Date
    Apr 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    For some reason it works well, but it only mines a single rock. I have it with three around my character, and it mines a single iron rock, waits for it, then mines it again, repeat.

  11. #36
    Join Date
    Apr 2016
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by OzDev View Post
    For some reason it works well, but it only mines a single rock. I have it with three around my character, and it mines a single iron rock, waits for it, then mines it again, repeat.
    Hmm exactly the same thing happens for me, unfortunately. I hope someone can help us update this.

  12. #37
    Join Date
    Jun 2007
    Location
    Michigan
    Posts
    269
    Mentioned
    2 Post(s)
    Quoted
    141 Post(s)

    Default

    Quote Originally Posted by cytonwiderrr View Post
    Hmm exactly the same thing happens for me, unfortunately. I hope someone can help us update this.
    If this isn't working for you I would recommend Ashamans powerminer. Last I knew it worked.

  13. #38
    Join Date
    Apr 2016
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by IROC-Z View Post
    If this isn't working for you I would recommend Ashamans powerminer. Last I knew it worked.
    Ashamans doesn't even start mining for me, I now manually downloaded the bonsai power miner, and it works perfect! Had to adjust the drop function tho, cuz it was dropping every 3 ores, other than that totally recommended! (I use phoenix lair teleport to get to the 3 iron ores, maybe those aren't compatible with ashamans powerminer / this one.)

  14. #39
    Join Date
    Jun 2007
    Location
    Michigan
    Posts
    269
    Mentioned
    2 Post(s)
    Quoted
    141 Post(s)

    Default

    Quote Originally Posted by cytonwiderrr View Post
    Ashamans doesn't even start mining for me, I now manually downloaded the bonsai power miner, and it works perfect! Had to adjust the drop function tho, cuz it was dropping every 3 ores, other than that totally recommended! (I use phoenix lair teleport to get to the 3 iron ores, maybe those aren't compatible with ashamans powerminer / this one.)
    Thanks for the update! I'm sure it will come in use for some else. Sorry I led you wrong ha. Guess it has been longer than I thought since I used his. Good luck!

  15. #40
    Join Date
    Jun 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesn't work at al-kharid mine for some reason. I took it to west falador and seems to work great there.

  16. #41
    Join Date
    Nov 2014
    Location
    Estonia
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

  17. #42
    Join Date
    Nov 2014
    Location
    Estonia
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by ckbbe View Post
    #smexy3mining.JPG

  18. #43
    Join Date
    Nov 2014
    Location
    Estonia
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Sadly again banned :/

Page 2 of 2 FirstFirst 12

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
  •