November 19, 20178 yr I can't figure out a proper way to sleep while smiting as the animation is -1 after every bar is retrieved. Any tips? maybe onMessage when I fail a bar or successful smelt one?
November 19, 20178 yr You can do what Jammer said, but bare in mind that if your script has long sleeps here and there, it won't get frequently updated. You could perhaps work with a timer in another thread, but make sure you correctly create/close the thread !
November 19, 20178 yr 2 hours ago, Cmontryme said: I can't figure out a proper way to sleep while smiting as the animation is -1 after every bar is retrieved. Any tips? maybe onMessage when I fail a bar or successful smelt one? Personally I just do a long ass sleep until either: The player has levelled up / in dialogue There are no more bars to smelt For example: if (clicked widget or whatever) { new ConditionalSleep(60_000, 600) { @Override public boolean condition() { return !canSmeltBar() || getDialogues().isPendingContinuation(); } }.sleep(); } Where canSmeltBar() just returns whether or not the inventory contains the required ores to smelt a bar. Edited November 19, 20178 yr by Explv
Create an account or sign in to comment