MrBigBertil 0 Posted December 30, 2022 Im specifically wondering how to get amount of gold in the coffer in blast furnace. Any ideas?
Genius 50 Posted December 31, 2022 7 hours ago, MrBigBertil said: Im specifically wondering how to get amount of gold in the coffer in blast furnace. Any ideas? Use the widget hover tool to determine IDs. You may need to run a test script with the widget on-screen and play with it a bit to return the right one. WidgetChild gold = Widgets.getWidgetChild(XX, XX); //where XX are the parent and child widget IDs - get these with widget hover tool or game explorer with widget on-screen if (gold != null && gold.isOnScreen()) { //widget exists log(gold.getText()); } Let me know if i can be of more help. If you hover the widget and take a screenshot i can help you with the getWidgetChild bit.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.