Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Botre

    facepalm

    yh y u so lazy ? Get a real cape
  2. Do as you please, I find his arguments rather weak.
  3. http://stackoverflow.com/questions/147454/why-is-using-a-wild-card-with-a-java-import-statement-bad
  4. I'm not a fan of fancy commercial sample packs / libraries. I prefer one-shot samples of actual gear. Building your own custom libraries is the best thing to do, you'll know all it's components, how it's organized, etc.. Mine for example (yup huge showoff, but I'm damn proud of it) Drums machines: Instruments: All:
  5. Google them. I like nexus a lot actually. Some of my other favs: Sylenth1 Massive by NI The Korg Legacy bundle by Korg Chipsounds by Plogue (if you are into 8/16-bit) ABL Pro by AudioRealism SPC Gater (if you are into trance gate effects) Anything by TAL (decent freeware synths) The WOW filter by SugarBytes Could go on and on tbh..
  6. The answer is: Ableton
  7. What if a tile is next to 2 doors and the client returns the other one instead of the one you want when you request the closest? Rare situation, but I had to change mine because of one ><
  8. You might start opening doors you don't need/want to open.
  9. "Them" not "it" ;) The sole fact that you think I would leak my private methods just to prove you wrong is the unambiguous proof that you are in fact naive, either that or a lame strategy to get a hold of them.
  10. You're wrong, naive not to mention pretentious for thinking you know the whole runescape economy.
  11. Do you seriously think there are no more methods that can yield 300k/h profit without requirements?
  12. They are still 300k(+)/h for one reason: SILENCE
  13. Oh pls, yes you can.
  14. For OSB2 public class DropItems { private final Script script; @SuppressWarnings("unused") private final Bot b; public DropItems(final Script script, final Bot b) { this.script = script; this.b = b; } public void dropAllExcept(ArrayList<String> blacklist) throws InterruptedException { Item[] i = script.inventory.getItems(); for (Item inventoryItem : i) { if (!blacklist.contains(inventoryItem.getName()) && Arrays .asList(inventoryItem.getDefinition().getActions()) .contains("Drop")) { int s = script.inventory.getSlot(inventoryItem); Timer failsafe = new Timer(0L); while (script.inventory.getSlot(inventoryItem) == s && failsafe.getElapsed() < 5000L) { inventoryItem.interact("Drop"); Script.sleep(750); } } if (script.inventory.isItemSelected()) { script.inventory.deselectItem(); } } } }
  15. Added blacklist to the constructor and added the new F2P worlds to the F2P list
  16. Nvm
  17. Don't use IDs
  18. Snipeeeeeeeeeeeeeeets
  19. Bans are delayed so that you're unable to find out what exactly caused it.
  20. wat
×
×
  • Create New...