Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 KB | None | 0 0
  1. else if (!getLocalPlayer().isAnimating() && Smithing_Area.contains(getLocalPlayer())) {
  2.                     getInventory().interact(2357, "Use");
  3.                     sleep(Calculations.random(750,1200));
  4.                     getMouse().click(Furnace);
  5.                     sleep(Calculations.random(1500,2000));
  6.                     if (getWidgets().getWidget(548) != null) {
  7.                     if (getWidgets().getChildWidget(548, 15).isVisible())
  8.                     {
  9.                         WidgetChild gold_amulet = getWidgets().getChildWidget(548, 15);
  10.                         gold_amulet.interact("Make-X");
  11.                         sleep(Calculations.random(1000, 1500));
  12.                         getKeyboard().type("33", true);
  13.                         sleepUntil(() -> !getLocalPlayer().isAnimating() || getDialogues().inDialogue(), 2000);
  14.                     }
  15.                 }
  16.                 break;
  17.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement