Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. oh well i havent used it so i dont know. So i just decided to create my own. It only took me like a min to type it up.
  2. You need to create your own method because that method is broken Here you go i made you a quick one public boolean dropAllExcept(int... ids) throws InterruptedException { for(Item item: client.getInventory().getItems()) { for (int id: ids) { if (item != null && ids.length > 0) if (item.getId() != id) client.getInventory().dropAll(item.getId()); } } return client.getInventory().isEmptyExcept(ids); }
  3. there isnt any you'll have to create one. Using interfaces
  4. Rather then checking for color. I pretty sure you could use interfaces since when your poison I think the orb is click able so that could help
  5. I understand where your coming from, but to have to redo all the picture because of one spelling is a bitch
  6. Lol I'll fix it when I get home
  7. sweet, i love learning from professional.
  8. How could i fix this error? Setup: They are all under a magic class
  9. Joseph

    Looting Bag

    what? it could be a lot cleaner, id admit. But that fact that i been spending way to much time on it. I just decided to leave it how it is for now. Ill come back to it and perfect i later
  10. Could you make me a inventory size paint for my construction script? and maybe a better logo lol
  11. Joseph

    Looting Bag

    If you ain't going to give positive criticism then what about fuck off, you ungrateful prick And a looting bag is a bag you receive in the wildy. The bag gives you 28 more inventory space. Only works In the wild, any npc in the wild drop them. Anything you put in the bag can't be removed unless you deposit them in the bank.
  12. if (randomManager.getCurrent().equals(RandomManager.PRISON_PETE))
  13. Joseph

    Looting Bag

    How to initialize: LootingBag lootingBag; @Override public void onStart() { lootingBag = new LootingBag(this); } Picture: Snippet:
  14. I still haven't tried it yet
  15. Where you have method 1, 2, 3 don't forget to add the ()
  16. Joseph

    SpecialAttack

    Ps. Depending on the weapon they are wearing why they start the script. That will be the their initial weapon, and the class will always switch between their initial weapon and there special weapon. How to initiate it. SpecialAttack specialWeapon; @Override public void onStart() { specialWeapon = new SpecialAttack(this); } How to use it: specialWeapon.useSpecial(SpecialWeapon.DRAGON_DAGGER_S);
  17. Joseph

    Herb Snippet

    Sorry for my rudeness, im just a bit cranky because i just had surgery. And im sick of not doing anything all day. and i added both versions the correct one. And the more advances one.
  18. Joseph

    Herb Snippet

    If I'm wrong then I don't now why I brother to help
×
×
  • Create New...