Jump to content

Apaec

Scripter III
  • Posts

    11146
  • Joined

  • Last visited

  • Days Won

    91
  • Feedback

    100%

Everything posted by Apaec

  1. Hi there all, Apologies for the delay, im out of the country at the moment. I've started all trials for users that meet the rules / criteria from mobile , sorry if I missed you - let me know! All the best Apa
  2. Sure thing, done! Sorry for the delay, I am out of the country at the moment and responding on mobile. -apa
  3. Not quite yet, it's something i'm working on as part of a bigger re-write, but it's just a question of finding the time to do it now!
  4. Sure, done!:) Sure thing! Hey! Thanks for letting me know. I'm looking into a fix for the first issue, however as for the second, there's not much I can do about this considering once a sand crab has spawned, there's no way to determine whether it 'belongs' to you or not. Hopefully this doesn't happen too often and doesn't cut into xp gains much; to my knowledge, the sand crabs should return to their positions after about a minute and a half of wandering. Best Apa Certainly, done! Sure, done!
  5. Have been working on a fix for banking while smelting, for some reason recently it's become a bit unreliable! I might upgrade to a different banking framework in the mean time. Will see -Apa
  6. Hey, Unfortunately per OSBot policy I cannot offer trials to accounts under a week old. Sorry about that Best Apa
  7. Apaec

    APA AIO Miner

    Yeah, mirror is a bit buggy with my sand crabs script too. It's frustrating, because there's nothing us scripters can do about it (other than suggest just switching over to stealth injection) - it's less resource intensive and more reliable. All the best Apa
  8. Perhaps, although it might warrant a change in price as would the introduction of any other niche cooking method. That being said, I think there are some good free wine making scripts on the SDN, so be sure to check them out! Apa
  9. Sorry, I can only offer a trial of APA Sand Crabs Just started your trial, enjoy! -Apa
  10. Apaec

    APA AIO Miner

    Hmm, are you sure that, when you selected the rock, it had ore? Make sure the rock is unmined before selecting it!
  11. Since all the data is constant, may as well store it in an enum, but yeah this looks good
  12. Hey, Mirror mode is a little temperamental with this script - for more details please see the main page under the section 'things to consider before buying / trying'. It should run perfectly in stealth injection so i'd suggest switching to that Apa
  13. That's very odd... if it didn't deposit the bars, then it shouldn't try to withdraw the ores. I'll take a look at the banking system now and see what I can do Thanks for letting me know Apa
  14. Woah that's some pretty serious gains!! Hopefully that paid off the $5 haha
  15. Hi guys Probably a type in one of the ingredients, I scraped the name data for stuff from the wiki, but sometimes they're not word-for-word accurate with the ingame names so this can cause issues. I'll see if I have some time in the coming week or so to get this fixed but you can always take a look at the source code yourselves and fix it locally while you wait ! https://github.com/apaec/aio-herblore Apa Does it say anything in the console logger?
  16. It's getting a little bit spaghetti, might be worth re-thinking how you approach this problem! I would suggest creating a pickaxe enum, for example: public enum Pickaxe { BRONZE_PICKAXE(1), IRON_PICKAXE(1), /* ... */ DRAGON_PICKAXE(61); private final int levelReq; Pickaxe(int levelReq) { this.levelReq = levelReq; } public int getRequiredLevel() { return levelReq; } public boolean hasRequiredLevel(MethodProvider mp) { return mp.getSkills().getStatic(Skill.MINING) >= levelReq; } public boolean equip(MethodProvider mp) { /* ... */ } @Override public String toString() { return super./* ... */; } } Then you can use this to determine the highest tier pickaxe to use, i.e Arrays.asList(Pickaxe.values()).stream().filter(pick -> pick.hasRequiredLevel(mp)). /* ... Reduction to highest required level ... */ I've left gaps here and there for you to implement so hopefully you learn something new ! Also, hopefully there are no errors, but I wrote the code in the reply box so if there are, sorry about that, just let me know! Edit: Or, alternatively, you could just as easily use a for loop with some simple logic (i.e "for (Pickaxe axe : Pickaxe.values()) { ... }" ) to find the best pickaxe. I just like streams cause you can make it a tidy one-liner Good luck! -Apa
  17. That's odd; does it say anything in the console logger? -Apa Hey, glad it's working well! I can't really add the wilderness course as this is purely a rooftops script, and adding any more courses would result in me needing to raise the price (to stay in line with OSBot store undercutting rules) which i'm not really wanting to do. Sorry about that As for the canifis thing, i'm not sure what's causing this but I will do a few test runs and see if I can replicate this issue - thanks for letting me know!
  18. I've never tried, sounds like lots of fun though. Don't know where the law stands in the UK about using these in public places tho
×
×
  • Create New...