Before 97 Posted April 16, 2016 How can I detect this thingymabober and click "Make X" on one of them: http://i.imgur.com/yWDUPp9.png And then once I do that, how do I enter this field? http://i.imgur.com/xsn4KdX.png
Rabrg 83 Posted April 16, 2016 tools -> debugging -> game debugger/widget hover to get the widget ids use this method to get the widget use this method to interact with the widget use this method to type the amount u also shouldve posted this in the scripting section
Before 97 Author Posted April 16, 2016 tools -> debugging -> game debugger/widget hover to get the widget ids use this method to get the widget use this method to interact with the widget use this method to type the amount u also shouldve posted this in the scripting section Thanks a lot :3 I don't think I'm worthy of a scripting section yet..
Synergy1 1 Posted April 16, 2016 WidgetChild child = getWidgets().getWidgetChildrenContainingText("name of the bar you want here").get(0); if (child != null) { child.interact("Make X"); }
Before 97 Author Posted April 16, 2016 WidgetChild child = getWidgets().getWidgetChildrenContainingText("name of the bar you want here").get(0); if (child != null) { child.interact("Make X"); } Thanks so very much, I was really struggling
Before 97 Author Posted April 17, 2016 No problem m8. ..Hey synergy.. wot do I do next.. http://i.imgur.com/WSsfazt.png I really don't get how to use this http://dreambot.org/javadocs/org/dreambot/api/methods/input/Keyboard.html#type-java.lang.Object-
Recommended Posts
Archived
This topic is now archived and is closed to further replies.