Hi i'm new to scripting at osbot.org. Trying to learn the basic stuff. Created a willow cutter and banker at draynor. Now moved onto a steel smelter at edgeville (just to get more knowledge and the basics)
I just have a problem with smelting since your animations stop for a second when smelting bars. How can i prevent this?
Here's an example of my code:
if (!player.isAnimating()) {
if (!player.isMoving()) {
// && System.currentTimeMillis() > (player.getAnimation() + 3000)
if (options == null) {
furnace.interact("Smelt");
sleep(3000);
}
if (options != null) {
sleep(3000);
options.interact("Smelt X Steel");
sleep(random(2000, 2000));
keyboard.typeString("" + random(29, 99), true);
sleep(3000);
}
//sleep(random(1000, 1000));
}
}
It just hits smelt at furnace again when it has smelted 1 bar.
Thanks in advance