Jump to content

Interacting faster with npc


futurepasts

Recommended Posts

So my question is there any way to interact npc faster.

   What my script does is simply  "Use" item in my inventory and clicks on npc and repeat till inventory is full, but it clicks every 1-2 seconds and thats slow code that i use.

if (getInventory().isItemSelected()) {

npc.interact("use");

} else {

getInventory().interact("Use", "item name");

}

Please answer understandable way cuz im newbie.

Link to comment
Share on other sites

  • Developer

Maybe something like this?


if (!inventory.isItemSelected()) {
    inventory.interact("Use", "item name");
    if (!new ConditionalSleep(2000) {
        @Override
        public boolean condition() {
            return inventory.isItemSelected();
        }
    }.sleep()) {
        return 10 + gRandom(5, 5);
    }
}
npc.interact("use");
  • 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...