Everything posted by Joseph
-
Dropping All Except
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); }
-
Malewarebytes Keys
I also took one thank you
- Friends list API functions?
-
Friends list API functions?
there isnt any you'll have to create one. Using interfaces
-
isPoisoned
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
-
What's an Enum [Part-One]
I understand where your coming from, but to have to redo all the picture because of one spelling is a bitch
-
What's an Enum [Part-One]
There's more to come
- The OSBot Skype Scripting Chat
-
What's an Enum [Part-One]
Lol I'll fix it when I get home
-
AT AIO crafter data
sweet, i love learning from professional.
-
Zaros's Free as Hell Shop
aint no rush thanks
-
Help with an Error
How could i fix this error? Setup: They are all under a magic class
-
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
-
Zaros's Free as Hell Shop
Could you make me a inventory size paint for my construction script? and maybe a better logo lol
-
Tab Maker - source & resell rights (500k/H)
maybe lowing the price could help
-
Fastest way to get perm banned
what you mean that's insta-ban
-
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.
-
randomManager - question
if (randomManager.getCurrent().equals(RandomManager.PRISON_PETE))
-
Looting Bag
How to initialize: LootingBag lootingBag; @Override public void onStart() { lootingBag = new LootingBag(this); } Picture: Snippet:
-
Array List question
I still haven't tried it yet
- Inactivity.
-
Tips on how to not be bad
Where you have method 1, 2, 3 don't forget to add the ()
- SpecialAttack
- Polygon Area
-
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);