Jump to content

Patrick

Developer
  • Posts

    1828
  • Joined

  • Last visited

  • Days Won

    164
  • Feedback

    0%

Everything posted by Patrick

  1. As far as I'm aware, the task detection issue is solved.
  2. The client has a system to try to walk all around the game world (the web walker). However it's not flawless and there are some locations it can't reach (yet). Yes Maybe. We are working on large webwalker changes and trying to add more locations.
  3. Patrick

    Exco Puro Puro

    Enjoy
  4. Enjoy
  5. Hey, We've been hard at work refactoring a lot of the client. As it's been a while since the last release, we decided to release a dev build with some of the changes enabled. Download link: http://osbot.org/devbuilds/osbot 2.6.47.jar API CHANGES: - Added Quest#BENEATH_CURSED_SANDS and LAND_OF_THE_GOBLINS FIXES: - A couple CPU usage related performance improvements. - Various changes in an attempt to lower banrate. MISC: - Java 17 is now in beta. - Minor bug fixes. - The OSBot Team
  6. The webwalker couldn't find a path, I would need the exact monster and location to see what's up. Cannon isn't supported atm
  7. 9/10 times clues are unsolvable due to the client webwalker not being able to reach a location.
  8. Enjoy There is currently no logic for cli, but it's something I can look into in at a later date
  9. I'll see if I can add this to the webwalker in the next client release. Enjoy Made some changes for version 1.033. The issue seems to be with widget/message detection in mirror so I've added some backups Enjoy
  10. Enjoy
  11. Thanks, I just pushed a new version (1.032). The task issue should be fixed in there.
  12. Enjoy
  13. Enjoy
  14. Enjoy
  15. Enjoy An unsolvable clue is mostly caused by the webwalker not supporting a certain location. I will check if those locations can be fixed
  16. Varbits are just a bitmask over the config in the end, so if you get hold of the config, most- and least significant bit, you can get the varbit value via something like this EQUIPPED_WEAPON_TYPE(843, 5, 0); private final int configId; private final int msb; private final int lsb; Varbits(int configId, int msb, int lsb) { this.configId = configId; this.msb = msb; this.lsb = lsb; } public int getValue(Configs configs) { int mask = (1 << ((msb - lsb) + 1)) - 1; return (configs.get(configId) >> lsb) & mask; }
  17. Enjoy
  18. Enjoy please follow the bug report template
  19. Enjoy
  20. Enjoy
  21. Patrick

    Exco Puro Puro

    Enjoy
  22. Enjoy
  23. Please follow the bug report template (screenshot + full logger)
  24. Enjoy
  25. Patrick

    Exco Puro Puro

    Enjoy
×
×
  • Create New...