Jusple Posted March 12, 2015 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.
Isolate Posted March 12, 2015 Posted March 12, 2015 (edited) its:"Smelt X Bronze" isnt it? Edited March 12, 2015 by Isolate
Khaleesi Posted March 12, 2015 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