-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintained fork #236
base: master
Are you sure you want to change the base?
Maintained fork #236
Conversation
Hey @AntonyGarand. Do you also have an API up around this up2date database fork? The discord seems to be deleted as well and I'm unsure where the community is turning towards to replace osrsbox. |
It's not quite as easy to use as this package but I've been accessing the OSRS Wiki API. |
Hey! |
@AntonyGarand how are you getting up to date data for your db? And is osrsquery on github at all? Is it open source? |
@ashtongraves I can't speak for Antony but you can update with the scripts included in the repo, namely in this directory https://github.com/osrsbox/osrsbox-db/tree/master/scripts/update its important when cloning that you update submodules with something like If you want up-to-date icons there's a plugin they made for runelite which grabs them from in-game found here: https://github.com/osrsbox/osrsbox-plugins/tree/master/plugins/icondumper Though it isn't perfect, since the icons are loaded async and saving them instantly like in their implementation often results in blanks - I wrote a custom implementation of that plugin that seems to work perfectly. You can change the BufferedImage to an AsyncBufferedImage like below: AsyncBufferedImage iconImage = itemManager.getImage(itemId);
iconImage.onLoaded(() -> {
try {
ImageIO.write(iconImage, "png", outputFile);
} catch(IOException e) {
e.printStackTrace();
}
}); |
@AntonyGarand Hey! Thank you for the work maintaining the fork 🙏 I was curious if you've had trouble dumping the cache using the RL cache tool since the Raids 3 update.
Not sure if this is an appropriate place to post this issue, but I felt it'd get more visibility here. EnvironmentRunelite@HEAD (runelite/runelite@59243b0) Submodules:
|
Hey, sorry about the delay! |
For those looking at an updated repo, I'll be updating this fork every once in a while.