SupImDos Posted June 7, 2014 Share 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 Link to comment Share on other sites More sharing options...
Nitrousek Posted June 7, 2014 Share 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. Link to comment Share on other sites More sharing options...
Freak Posted June 7, 2014 Share 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. Link to comment Share on other sites More sharing options...
SupImDos Posted June 7, 2014 Author Share Posted June 7, 2014 Thanks guys Link to comment Share on other sites More sharing options...