Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26955
  • Joined

  • Last visited

  • Days Won

    214
  • Feedback

    100%

Everything posted by Khaleesi

  1. Where did you start the script?
  2. 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
  3. Why don't we use proxies? No login are authentication required xD Dutch OP!
  4. Wow your mom must really love you !
  5. 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!
  6. 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
  7. OKk thx for the report, This is indeed glitchy, will get this sorted once I got home from work ! Khaleesi
  8. ya now f2p came out bann rates are skyhigh Just give it some itme to calm down ^^
  9. Something like: "Ardougne" ? xD
  10. 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 !
  11. Script has been updated to V0.04! V0.04: - Added Port sarim Willows - Fixed too much walking with innteractions Kind regards Khaleesi
  12. 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
  13. I've got no idea No clue about bans really I know runecrafting isn't that much high bann rate then common skills ^^
  14. 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
  15. It didn't happen to me anymore, It got solved when I switched map.walk(npc) to map.walk(npc.getPosition());
  16. Ya I just looked it up ^^ Never used it before in any of my scripts.. For what reason do you need it? maybe there is an easier solution to solve your issue ^^
  17. what do you mean with the object "uid" ? (guess I'm just a retard) Do you mean hash?
×
×
  • Create New...