t0r3 Posted April 3, 2019 Author Posted April 3, 2019 On 4/2/2019 at 2:16 AM, Dab in a Lab said: I see you have a 2 declarations for the bronze bar button. One for null checking and another for interacting. You can just use the interacting declaration and null check that instead RS2Widget bronzeBarsButton = getWidgets().get(270,14); if (bronzeBarsButton != null && bronzeBarsButton.isVisible(){ bronzeBarsButton.interact("smelt") //your sleep } Edit: Just an FYI too, you don't need a sleep for webwalking. I did the same thing when I first started off too, but then realized its not going to continue reading lines until webwalking is done Yeah u're right Thanks