Jusple Posted March 12, 2015 Share Posted March 12, 2015 if(SMELT_AREA.contains(myPlayer())){ Entity x = objects.closest("Furnace"); RS2Interface clickArea = interfaces.get(311); if(x != null) { if(x.interact(smelt)){ if(clickArea != null){ RS2InterfaceChild boronze = clickArea.getChild(4); if(boronze != null){ sleep(600); boronze.interact("Smelt X"); } } } } } It will hover over bronze bar, doing nothing. Quote Link to comment Share on other sites More sharing options...
Isolate Posted March 12, 2015 Share Posted March 12, 2015 (edited) its:"Smelt X Bronze" isnt it? Edited March 12, 2015 by Isolate Quote Link to comment Share on other sites More sharing options...
Extreme Scripts Posted March 12, 2015 Share Posted March 12, 2015 its: "Smelt X Bronze" isnt it? Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted March 12, 2015 Share Posted March 12, 2015 (edited) Stop using interfaces ... go use widgets. Interfaces are not 100% working RS2Widget bronze = widgets.get(311,4); You are using the wrong text ... recheck it again Khaleesi Edited March 12, 2015 by Khaleesi 1 Quote Link to comment Share on other sites More sharing options...
Jusple Posted March 12, 2015 Author Share Posted March 12, 2015 Thank you guys ! Quote Link to comment Share on other sites More sharing options...