Jump to content

Apaec

Scripter III
  • Posts

    11173
  • Joined

  • Last visited

  • Days Won

    91
  • Feedback

    100%

Everything posted by Apaec

  1. Thanks! Depends entirely on the developers and when they get around to pushing it live. It's down the their schedule so I'm afraid I can't do anything to speed up the process!
  2. UPDATE! Version 3.03 Fixed interface interactions to be in line with recent OSRS changes The script will select the 'All' option unless already selected Slightly adjusted cooking interaction logic Please allow up to 24 hours for the developers to verify the update and push it live. Apa Please refer to the above post!
  3. UPDATE! Version 3.10 Fixed interface interactions to be in line with recent OSRS changes The script will select the 'All' option unless already selected Slightly adjusted cooking interaction logic Edit: Just pushed version 3.11 - I fixed a couple of issues with menu handling for cooking raw meats on fires instead of stoves; it seems some of the menus differ. The updates will merge and go live together. Please allow up to 24 hours for the developers to verify the update and push it live. Apa Please refer to post above!
  4. UPDATE! Version 2.02 Fixed interface interactions to be in line with recent OSRS changes Forging now uses Make-All instead of Make-X (Make-X code is still in place such that if it for what ever reason misclicks X, it will still type) Smelting and Cannonballs now work and will automatically switch to the 'All' option if not already selected Added version number to the GUI Increased the height of the cannonballs activity window Please allow up to 24 hours for the developers to verify the update and push it live. Apa
  5. Ofcourse!! It was silly of my not to extend the duration. Once the changes that I have made are ready and go live, I will let you know and start a fresh trial for you. Cheers Apa
  6. Please refer to the post I made yesterday; I'm currently working on a system for this which I hope to have finished by tonight, but cannot make any promises!
  7. It will be automatic!
  8. Sure thing!! As a side note, I will be pumping out an update at some point soon so that it uses Make-all instead of Make-X where possible. Apa
  9. Sure; done! (: Awesome I will be pumping out an update at some point for it too so that it uses Make-all. Apa
  10. Thanks! (: I am aware; working on a fix for all my scripts. Cheers!
  11. Hi guys, Am aware of this change. I will work on fixing this as soon as possible; please be patient!
  12. Cheers for raising this concern; It doesn't seem to be happening to me though. Are you using mirror mode or stealth injection? You might find switching over could help!
  13. I'd just read through some very basic java tutorials to get the jist of what's going on, then jump in and learn more about java through trying to write some scripts!
  14. Not easily, but I will make it stop if you die. That should be a fail safe though; since it should never die. Something must have happened to your bot process perhaps; because I've done very rugged testing of the healing system and low hp failsafe system - this is the first report of a death that i've had all year!
  15. Hey; That must have been the webwalker kicking in because you died... I have no idea how you could have died though unless the script was stopped or interrupted somehow. Did it say anything in the logger?
  16. Cheers for the suggestion; I've made the code base open to expansion in the future such that I could potentially add this. The only issue is that it will slow down start up times quite significantly as instead of just pressing start you would have to navigate the file explorer ! I will perhaps try a few solutions at some point this week Apa
  17. Sounds like you've probably set something up wrong since the stop criteria were very rigidly tested - if you open the console, it will always log a message before stopping; Please let me know what that message is! Apa Awesome progress!!! 12 to 14 hours a day is crazy
  18. Thanks for the kind words!!(:
  19. Hey Cheers for the kind words - as for your quandary, there's unfortunately nothing that I can do about that since it is handled by the client. That being said, it seems to work fine for me; not sure what could be wrong. Apa
  20. Apaec

    RS Unit Format

    public String runescapeFormat(long l) { String[] suffix = new String[] { "K", "M", "B", "T" }; int size = (l != 0) ? (int) Math.log10(l) : 0; if (size >= 3) while (size % 3 != 0) size = size - 1; return (size >= 3) ? + (Math.round((l / Math.pow(10, size)) * 10) / 10d) + suffix[(size / 3) - 1] : + l + ""; } ...But yours is a lot more readable!!
  21. Sure thing, done!!
  22. Ofcourse, done! (:
  23. Yep, done! (:
  24. Sure thing; done! (:
  25. Sure thing! done (:
×
×
  • Create New...