-
Posts
20170 -
Joined
-
Last visited
-
Days Won
149 -
Feedback
100%
Khaleesi last won the day on August 10
Khaleesi had the most liked content!
About Khaleesi

Contact Methods
-
Website URL
http://khal-scripts.be/discord/
Profile Information
-
Gender
Male
-
Interests
Pleasing YOU with delicious scripts <3
Recent Profile Visitors
81570 profile views
Khaleesi's Achievements
-
Khal Agility (All in One) updated to V2.41: - added failsafe at relekka Live soon, Enjoy! thx for reporting! @CIeetZ
-
Ya it clicks a lot faster, not really inhuman speed though, just have New mouse enabled when you start the client
-
It's because GE is not added as a bank and the script wil walk to a real bank. I could add the area if you really want, but botting at GE aint the smartest thing to do
-
Rumnaldo 666 left Positive feedback for Khaleesi
-
Really strange, shouldn't happen
-
Thanks for letting me know, will take a look at it right away!
-
Enjoy the trials!
-
You can just equip it? I don't have to add anything special for it right?
-
Oh yes that's correct, resolution should be at 100% else java fucks up
-
Very strange! How does it look atm? screenshot?
-
Only doing 24h trials, enjoy!
-
checking if bot should pick up items on certain tile
Khaleesi replied to Aqla's topic in Scripting Help
private boolean lootItems(Position targetPosition) { List<String> itemsToLoot = Stream.of("Feather", "Bones").collect(Collectors.toList()); GroundItem itemToLoot = getGroundItems().closest(item -> item.getPosition().equals(targetPosition) && itemsToLoot.contains(item.getName())); if (itemToLoot != null) { if (itemToLoot.interact("Take")) { Timing.waitCondition(() -> !itemToLoot.exists(), 5_000); } return true; } return false; } Pick them up 1 by 1, returns true when loot is found