Advertisement
FALSkills

Untitled

May 9th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. private void purchaseSupplies(){
  2. List<GEItem> items = new ArrayList<GEItem>();
  3. if(!new ImpCatcher(callingScript).isComplete()){
  4. items.add(new GEItem("White bead",-4,1,true));
  5. items.add(new GEItem("Black bead",-4,1,true));
  6. items.add(new GEItem("Yellow bead",-4,1,true));
  7. items.add(new GEItem("Red bead",-4,1,true));
  8. }
  9. if(!new EzWitchsHouse(callingScript).isComplete()){
  10. items.add(new GEItem("Leather gloves",-4,1,true));
  11. items.add(new GEItem("Cheese",-4,5,true));
  12. items.add(new GEItem("Staff of air",-4,1,true));
  13. items.add(new GEItem("Lobster",-4,200,true));
  14. items.add(new GEItem("Water rune",-4,200,true));
  15. items.add(new GEItem("Earth rune",-4,200,true));
  16. }
  17. items.add(new GEItem("Mind rune",-4,2000,true));
  18. items.add(new GEItem("Fire rune",-4,6000,true));
  19. items.add(new GEItem("Ring of dueling(8)",-4,5,true));
  20. items.add(new GEItem("Amulet of glory(6)",-4,5,true));
  21. items.add(new GEItem("Falador teleport",-4,10,true));
  22. items.add(new GEItem("Camelot teleport",-4,10,true));
  23. items.add(new GEItem("Varrock teleport",-4,20,true));
  24. items.add(new GEItem("Law rune",-4,20,true));
  25. items.add(new GEItem("Rune scimitar",-4,1,true));
  26.  
  27. if(!new DoricsQuest(callingScript).isComplete()){
  28. items.add(new GEItem("Clay",-4,6,true));
  29. items.add(new GEItem("Copper ore",-4,4,true));
  30. items.add(new GEItem("Iron ore",-4,2,true));
  31. }
  32.  
  33. if(!new Waterfallv2().isComplete()){
  34. items.add(new GEItem("Rope",-4,5,true));
  35. items.add(new GEItem("Games necklace(8)",-4,2,true));
  36. }
  37.  
  38. if(!new PriestInPerilv2(callingScript).isComplete()){
  39. items.add(new GEItem("Pure essence",-4,50,true));
  40. }
  41.  
  42. if(!new BoneVoyage(callingScript).isComplete()){
  43. items.add(new GEItem("Vodka",1000,2,true));
  44. items.add(new GEItem("Marrentill potion (unf)",500,1,true));
  45. items.add(new GEItem("Skills necklace(6)",20000,1,true));
  46. }
  47.  
  48. if(!new DruidicRitual(callingScript).isComplete()){
  49. if(EzBanking.getTotalCount("Enchanted bear") == 0){
  50. items.add(new GEItem("Raw bear meat",1000,1,true));
  51. }
  52. if(EzBanking.getTotalCount("Enchanted chicken") == 0){
  53. items.add(new GEItem("Raw chicken",1000,1,true));
  54. }
  55. if(EzBanking.getTotalCount("Enchanted rat") == 0){
  56. items.add(new GEItem("Raw rat meat",1000,1,true));
  57. }
  58. if(EzBanking.getTotalCount("Enchanted beef") == 0){
  59. items.add(new GEItem("Raw beef",1000,1,true));
  60. }
  61. items.add(new GEItem("Guam potion (unf)",-4,40,true));
  62. items.add(new GEItem("Eye of newt",-4,40,true));
  63. } else if(Skills.SKILLS.HERBLORE.getActualLevel() < 10){
  64. int count = getNumberOfPotionsNeeded();
  65. items.add(new GEItem("Guam potion (unf)",-4,count,true));
  66. items.add(new GEItem("Eye of newt",-4,count,true));
  67. }
  68.  
  69. EzGrandExchange exc = new EzGrandExchange();
  70. exc.itemsToBuy = items;
  71. Collections.shuffle(exc.itemsToBuy);
  72. exc.run();
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement