Jump to content

Mr Asshole

Members
  • Posts

    1383
  • Joined

  • Last visited

  • Feedback

    95.2%

Everything posted by Mr Asshole

  1. He probably has own private bot.
  2. Lol. I kind of laughed at the credits at the end.
  3. That tree chop method won't work above if it's off screen.
  4. I wasn't trolling, here's another chop method: if (client.getInventory().getItemForName("Bronze Axe") != null) { selectInventoryOption(client.getInventory().getSlotForId("Bronze Axe", "Chop"); sleep(random(5000000000, 600000000); That's more efficient than the last one. You should be teaching them rather than misleading them... lol
  5. Mr Asshole

    My first script!

    Make a abyss crafter :P
  6. Good job, but what's the point when there's a sdn?
  7. Little snippet that determines if you're being attacked by a random. Make sure to have the npc names as the npc you're fighting. private boolean isRandomAttacking(String... npcNames) { List<NPC> enemies = client.getLocalNPCs(); if (enemies != null) { for (NPC npc : enemies) { for (String s : npcNames) { if (!npc.isFacing(client.getMyPlayer()) && !npc.isVisible()) { continue; } if (!npc.getName().equals(s)) { return true; } } } } return false; }
  8. What's the point of returning npc names?
  9. Dexter i prefer to watch more than supernatural. I recommend sherlock and breaking bad though
  10. I'm going to wait for n3ss3's script. No offense.
  11. Updated according to your comments.
  12. I'm not seeing anything related to filters in the api. Care to explain?
  13. More input please and your love for adriana grande is slightly disturbing. You're disturbing. l2spell L2spell? Lol what did i spell wrong?
  14. More input please and your love for adriana grande is slightly disturbing.
  15. Decided to share this as the get closestAttackableNPC wasn't working that great for me. Enjoy guys private NPC getTarget(int [] ids){ List<NPC> NPCs = closestNPCList(ids); for (NPC i:NPCs){ if (i.getFacing() == null && !i.isAnimating()){ return i; } } return null; }
×
×
  • Create New...