Advertisement
Warfront1

Untitled

Oct 22nd, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. package scripts;
  2.  
  3. import org.hexbot.api.util.Time;
  4. import org.hexbot.core.concurrent.script.Info;
  5. import org.hexbot.core.concurrent.script.LoopScript;
  6. import org.hexbot.core.concurrent.script.Type;
  7.  
  8. @Info(name = "Pouch Testing", author = "warfront1", description = "Tests Pouch Class", type = Type.RUNECRAFTING)
  9. public class AnotherTestScript extends LoopScript {
  10.  
  11.  
  12.  
  13. @Override
  14. public int loop() {
  15. System.out.println("/////////////////////////////////////");
  16. System.out.println("// Pouch Hook Testing //");
  17. System.out.println("/////////////////////////////////////");
  18. System.out.println();
  19. System.out.println("/////////////////////////////////////");
  20. System.out.println("// AmountOfEssenceInXYZPouch //");
  21. System.out.println("/////////////////////////////////////");
  22. System.out.println(" Small Pouch: " + PouchSupport.AmountOfEssenceInSmallPouch());
  23. System.out.println(" Medium Pouch: " + PouchSupport.AmountOfEssenceInMediumPouch());
  24. System.out.println(" Large Pouch: " + PouchSupport.AmountOfEssenceInLargePouch());
  25. System.out.println(" Giant Pouch: " + PouchSupport.AmountOfEssenceInGiantPouch());
  26. System.out.println("/////////////////////////////////////");
  27. System.out.println("/////////////////////////////////////");
  28. System.out.println("/////////////////////////////////////");
  29. System.out.println();
  30. System.out.println("///////////////////////////////////////");
  31. System.out.println("//DoesInventoryContainBrokenPouches()//");
  32. System.out.println("///////////////////////////////////////");
  33. System.out.println("DoesInventoryContainBrokenPouches() returns:" + PouchSupport.DoesInventoryContainBrokenPouches());
  34.  
  35.  
  36. Time.sleep(5000);
  37. return 0;
  38. }
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement