Jump to content

Khaleesi

$250.00 Donor
  • Posts

    27512
  • Joined

  • Last visited

  • Days Won

    222
  • Feedback

    100%

Everything posted by Khaleesi

  1. This 1 is khal ? xD
  2. Thats awkward, so it works now?
  3. Where did you start the script?
  4. This guys is amazing
  5. Hello Yakuza, I've fixed the teleport yesterday, but didn't update the script yet. @Abyss, Can you get me a screenshot when this happends? when script doenst rotate camera for objects. @Chaos, Probably some minor flaw Script will be updated this evening! Khaleesi
  6. Why don't we use proxies? No login are authentication required xD Dutch OP!
  7. Almost reached 2k!
  8. +1
  9. Wow your mom must really love you !
  10. 11/10 Would bang x3
  11. Khaleesi

    Need GFX!

    No sorry
  12. He has, then client throw a error: Could not load class: "blah blah" It was a script I made for him, i'll take a look whats wrong and keep you up-to-date!
  13. RS2Object trapdoor = objects.closest("Trapdoor"); A better way to do this is: if (!myPlayer().isMoving() && inventory.contains("Bucket")) { RS2Object trapdoor = objects.closest("Trapdoor"); if (trapdoor != null) if (trapdoor.isVisible()) trapdoor.interact("Climb-down"); else camera.toEntity(trapdoor); } If you want a trapdoor on a specific position you have to use the Filter. This can filter out everything you want. Example: if (!myPlayer().isMoving() && inventory.contains("Bucket")) { RS2Object trapdoor = objects.closest(new Filter<RS2Object>(){ @Override public boolean match(RS2Object object) { return object != null && object.getName().equals("Trapdoor") && object.getPosition().equals(new Position(0, 0, 0)); }}); if (trapdoor != null) if (trapdoor.isVisible()) trapdoor.interact("Climb-down"); else camera.toEntity(trapdoor); } Goodluck! Khaleesi
  14. OKk thx for the report, This is indeed glitchy, will get this sorted once I got home from work ! Khaleesi
  15. ya now f2p came out bann rates are skyhigh Just give it some itme to calm down ^^
  16. Something like: "Ardougne" ? xD
  17. Ya got this reported too yesterday, Can you tell me in what direction your glory is located? Can you get me a printscreen from the osbot client (remove your name). Thx !
  18. Script has been updated to V0.04! V0.04: - Added Port sarim Willows - Fixed too much walking with innteractions Kind regards Khaleesi
  19. Script updated twice today: V0.03: - Added Jatizso support V0.02: - Added Karamja F2p support (requires coins for boat) - Updated Shilo village - improved catherby Script has been updated to V0.04: V0.04: - Fixed traveling to karamja (when pirates treasure quest is not completed) - Karamja now using the depositbox at monks instead draynor bank Goodluck! Khaleesi
  20. I've got no idea No clue about bans really I know runecrafting isn't that much high bann rate then common skills ^^
  21. Could do, Will see what's the best option. Not sure if prayer is so important! Maybe just 2-3 food will be enough xD
  22. don't tell us stuff we already know ^^
  23. It didn't happen to me anymore, It got solved when I switched map.walk(npc) to map.walk(npc.getPosition());
  24. Hello !
×
×
  • Create New...