March 12, 201511 yr 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.
March 12, 201511 yr Developer 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, 201511 yr by Khaleesi
Create an account or sign in to comment