It doesn't work still
Here's my code for traveling from bank to smelting place and smelting the bars
RS2Object furnace = objects.closest("Furnace"); RS2Object bank = objects.closest("Bank booth"); RS2Widget bronze = getWidgets().getWidgetContainingText("Bronze"); final Area FURNACE_AREA = new Area(3274, 3184, 3279, 3188); final Area BANK_AREA = new Area(3269, 3166, 3271, 3169); if (!FURNACE_AREA.contains(myPlayer())){ getWalking().walk(FURNACE_AREA.getRandomPosition()); if (!myPlayer().isAnimating()){ if (bronze != null){ bronze.interact("Smelt X"); getKeyboard().typeString("" + (int)((Math.random()*99) + 30)); } else furnace.interact("Smelt"); } }