Everything posted by Patrick
- Exco Slayer
-
Exco Clue Solver
Enjoy An unsolvable clue is mostly caused by the webwalker not supporting a certain location. I will check if those locations can be fixed
-
Varbits VarPlayers and Configs
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; }
- Exco Slayer
-
Exco Slayer
Enjoy please follow the bug report template
- Exco Slayer
- Exco Clue Solver
- Exco Puro Puro
- Exco Slayer
-
Exco Slayer
Please follow the bug report template (screenshot + full logger)
- Exco Slayer
- Exco Puro Puro
- Exco Slayer
-
Exco Slayer
Nice find, ill look into adding a filter. Regarding the get task, I need a screenshot and the logger output
-
Exco Slayer
Any error in the log? Enjoy
- Exco Puro Puro
-
[RESOLVED] Current state inventory issues
Fixed
- [Stable] OSBot 2.6.46
-
[RESOLVED] Current state inventory issues
Fixed but keeping the thread open in case todays update breaks the logic again.
-
[RESOLVED] Current state inventory issues
Currently fixed for injection only. Working on a mirror fix.
-
[Stable] OSBot 2.6.46
Hey, This release has a fix for the new item/spell selection changes. API CHANGES: - Added new logic for the selected item and spell changes. MISC: - Minor bug fixes. - The OSBot Team
-
[RESOLVED] Current state inventory issues
Potentially but not sure atm.
-
Exco Clue Solver
Base item prices are pulled from the wiki api. Then I increase that price to increase the chance of it buying. But if the base price from the wiki is wrong, it might still not buy. Seems the webwalker can't find a path to there. If you could report the bug according to the template, I could add it as an unsolvable clue., The bot client currently has some issues ( ) which might have something to do with inventory management. But I'll check it out either way.
-
[RESOLVED] Current state inventory issues
Update: seems there might be a new version of the game released tomorrow which might break the logic again. We're keeping an eye out for that.
-
[RESOLVED] Current state inventory issues
We're still working on it