Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. what website would you use? i appreciate the snippet
  2. You could pm if you like
  3. This topic is worthless. Having a free script or premium script released on the SDN don't prove anything. Just because you could run an alcher script for days doesn't mean it should be premium, now if you had an AIO that's a different story. Just because you have a premium script out doesn't mean shit, that offical rank does.
  4. fuck that shit i play old gba pokemon games on my iphone using "gba4ios" <~~~~google that
  5. Where was this tutorial when I needed it way back. Nice little tutorial .
  6. if you want to be all fancy you could do that with your toString(). i was just to lazy to do that. Also, the only reason why i put an argument inside the parameter because without, you wouldnt know which direction you are facing, without using player#getRotation. That the point of having toString a static method. So when you call the enum you could use that method. With out having to choose one of the actual enum option, and since you have a argument, you could simply add in your player getRotation(). for example: instead of doing this log(Direction.NORTH_WEST.toString()); log(Direction.SOUTH.toString()); log(Direction.EAST.toString()); log(Direction.NORTH.toString()); you could do log(Direction.toString(myPlayer().getRotation()));
  7. i was actually doing that now for my script. ill add it in a bit edit: added it in
  8. public enum Direction { SOUTH(0), SOUTH_WEST(256), WEST(512), NORTH_WEST(768), NORTH(1024), NORTH_EAST(1280), EAST(1536), SOUTH_EAST(1792); private int index; Direction(int index) { this.index = index; } public static String toString(int index) { for (Direction d: values()) { if (index == d.index) return d.name().replace("_", " ").toLowerCase(); } return null; } public static String toString(Direction d) { return d.name().replace("_", " ").toLowerCase(); } } You simply have to use my players "getRotation()" example: log("" +Direction.toString(myPlayer().getRotation())); pictures example: it wont let me add picture http://puu.sh/7nqGB http://puu.sh/7nqHw http://puu.sh/7nqI6
  9. why dont you supply us with that PotionData enum?
  10. Its nice to see the api cleaning up. Keep it up. Edit: i got the same error that "Jack" got, while not running in debug mode. Edit 2: But i also got this error, when i try to run it in debug mode
  11. But the fact that you supposedly know where all your items are at in the bank, does seem bot like. no matter how many randomize sleep you take. But on the other hand if you search for a item it reduces the fact that you look like a bot
  12. ive been knowing that, but that just make you look like a straight bot
  13. You should just add in a search method
  14. why you remade the banking API?
  15. Joseph

    item dump

    There's a website that contains all those names and ids
  16. I've been in the waiting list for almost 2 weeks
  17. Wtf i still have my same theme
  18. Joseph

    Timezone Fix.

    i sent @Smart a request for a timezone change
  19. ~Hopefully this could make us look less like a bot.~ i made a couple of bank methods that contains withdraw-(last amount) Both item id and item name. deposit Inventory tab. deposit worn item tab. only method you need to use are withdrawAmount(int itemId, int amount); withdrawAmount(String itemName, int amount); depositInventory(); depositEquipments(); link http://pastebin.com/j9ngMFDB source code: Depending on the community, i might add more methods like: search tab withdraw-all-but-one credits to @Pain: for helping me with menu contains string method
×
×
  • Create New...