SupImDos Posted June 7, 2014 Posted June 7, 2014 (edited) Hey Osbot, If i am making a FlaxSpinner, how would I go about making my script click on the "Bow String" option and then "Make X" and then type 28. Thanks a lot guys, -SupImDos case SPIN: if (!myPlayer().isAnimating()) { RS2Object spinner = closestObject(SPINNER_ID); if (spinner != null) { if (spinner.interact("Spin")) sleep(random(1000, 1500)); } } Edited June 7, 2014 by SupImDos
Nitrousek Posted June 7, 2014 Posted June 7, 2014 if(client.getInterface(Interface ID) != null) { selectInterfaceOption(Interface ID, Interface Child ID, String option); } Get the interface using the client debugger.
Freak Posted June 7, 2014 Posted June 7, 2014 You can do it an easier way by just creating a rectangle around the clickable area and allowing right click on the option. I only started yesterday but since the menus do not change in shape or size (unless and update) then rectangles are the best way forward.