Jump to content

danieljvdm

Members
  • Posts

    290
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1201 profile views

danieljvdm's Achievements

Black Poster

Black Poster (5/10)

88

Reputation

  1. Hey can you check your PMS? :D

  2. Concept of SDN is simple guys, you add a script to your account and then you can run it straight from the bot client. It'l load the class straight into your client when you select it so you don't have to download and place any scripts on your own.
  3. I'm not even on here? dafuq is wrong wid you Mr. "I don't know what a final is"
  4. private Rectangle getShopItemBounds(int itemId) { int slot = -1; for (int i = 0; i < client.getInterface(300).getChild(75).getInv().length; i++) { if (client.getInterface(300).getChild(75).getInv()[i] - 2 == itemId) { slot = i + 1; break; } } if (slot == -1) { return null; } slot = 6; int row = (int) Math.ceil((slot / 8.0) - 1); int column = slot > 8 ? slot - (row * 8) : slot; column--; int x = 80 + (column * 16) + (column * 31); int y = 69 + (row * 16) + (row * 31); return new Rectangle(x, y, 31, 31); } private void buyShopItem(Item item) throws InterruptedException { Rectangle itemBounds = getShopItemBounds(item.getId()); RectangleDestination destination = new RectangleDestination(itemBounds); for (int i = 1; i < 100; i++) { selectOption(null, destination, "Buy 10", false); sleep(100); } } Just modify that, I can't be bothered to
  5. You could try extend your main class as a super class and then you can use all of those methods...
  6. Just use stop() for now and wait for the 2 minute logout timer...
  7. danieljvdm

    Ventrilo

    You just defended yourself from your typo with another typo. It's "retarded". But I don't see why you need the admin's permission... just make the damn server and tell people it's there.
  8. danieljvdm

    Ventrilo

    IRC is just annoying to keep open and idle in... But I don't see myself wanting to talk to most of you either :P
  9. danieljvdm

    BETA v1.4.2

    In next few days
  10. danieljvdm

    BETA v1.4.1

    Everything is great, apart from moving entities like you said. My combat scripts don't work at all. Objects and items are working amazingly though. Huge improvement.
  11. Dang... their fans are insane.
  12. danieljvdm

    BETA v1.4.1

    Holy crap, my fletching script went from 125k/hr on magics to 170k...
×
×
  • Create New...