Issue: In my script for crafting Gold Necklaces, the furnace interface keeps opening repeatedly instead of staying open until I finish crafting.
Context: I’m using a loop that checks if the furnace interface is open. If not, it interacts with a nearby furnace to open it. Once opened, I store the interface in a widget holder and then proceed with crafting. However, if the widget isn’t visible (or becomes non-visible), I set a flag (interfaceOpened) to false, which then triggers another furnace interaction. This leads to the furnace interface being opened over and over again. while
while (getInventory().contains(GOLD_BAR)) {
RS2Object furnace = getObjects().closest("Furnace");
if (!interfaceOpened) {
if (furnace != null && furnace.interact("Smelt")) {
new ConditionalSleep(5000) {
@Override
public boolean condition() {
smeltInterfaceHolder[0] = getWidgets().get(446, 23);
return smeltInterfaceHolder[0] != null;
}
}.sleep();
interfaceOpened = true;
}
continue;
}
RS2Widget smeltInterface = smeltInterfaceHolder[0];
if (smeltInterface == null || !smeltInterface.isVisible()) {
interfaceOpened = false;
continue;
}
// Crafting code follows...
}