Jump to content

smelting animation


Cmontryme

Recommended Posts

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:

  1. The player has levelled up / in dialogue
  2. 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 by Explv
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...