Jump to content

Patrick

Developer
  • Posts

    1825
  • Joined

  • Last visited

  • Days Won

    164
  • Feedback

    0%

Everything posted by Patrick

  1. 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
  2. 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
  3. 9/10 times clues are unsolvable due to the client webwalker not being able to reach a location.
  4. Enjoy There is currently no logic for cli, but it's something I can look into in at a later date
  5. 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
  6. Thanks, I just pushed a new version (1.032). The task issue should be fixed in there.
  7. Enjoy An unsolvable clue is mostly caused by the webwalker not supporting a certain location. I will check if those locations can be fixed
  8. 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; }
  9. Enjoy please follow the bug report template
  10. Please follow the bug report template (screenshot + full logger)
  11. Nice find, ill look into adding a filter. Regarding the get task, I need a screenshot and the logger output
  12. Any error in the log? Enjoy
×
×
  • Create New...