Everything posted by Khaleesi
- Khal AIO Agility
- Khal AIO RuneCrafter
- 🔥 KHAL SCRIPTS TRIALS 🔥 HIGHEST QUALITY 🔥 BEST REVIEWS 🔥 LOWEST BANRATES 🔥 TRIALS AVAILABLE 🔥 DISCORD SUPPORT 🔥 ALMOST EVERY SKILL 🔥 CUSTOM BREAKMANAGER 🔥 DEDICATED SUPPORT
-
Khal AIO Thieving
Already supported, just have it in your inventory
- Khal AIO Cooker
- Khal AIO Agility
-
Khal AIO Magic
No sorry, only high alch with teleports
-
🔥 KHAL SCRIPTS TRIALS 🔥 HIGHEST QUALITY 🔥 BEST REVIEWS 🔥 LOWEST BANRATES 🔥 TRIALS AVAILABLE 🔥 DISCORD SUPPORT 🔥 ALMOST EVERY SKILL 🔥 CUSTOM BREAKMANAGER 🔥 DEDICATED SUPPORT
You already have an expired trial on this script
- Khal AIO Thieving
-
Proper way to handle tasks where there is a -1 animation between each activity e.g stringing bows crafting hide bodies etc.
public class AnimationCheck extends Script { private final Timer animationTimer = new Timer(3_000); @Override public void onStart() { } @Override public int onLoop() { if(myPlayer().isAnimating()){ animationTimer.reset(); } if(animationTimer.isRunning()){ log("Animating"); }else{ //Start doing whatever you wanted to do } return 50; } } Basic Timer class public class Timer { private long period; private long startTime; public Timer(long period) { this.period = period; startTime = System.currentTimeMillis(); } public boolean isRunning() { return getElapsed() < period; } public long getElapsed() { return System.currentTimeMillis() - startTime; } public long getRemaining() { return period - getElapsed(); } public void reset() { startTime = System.currentTimeMillis(); } public void stop() { period = 0; } public static String formatTime(long ms) { long sec = ms / 1000L; return String.format("%02d:%02d:%02d", Long.valueOf(sec / 3600L), Long.valueOf((sec % 3600L) / 60L), Long.valueOf(sec % 60L)); } }
-
Proper way to handle tasks where there is a -1 animation between each activity e.g stringing bows crafting hide bodies etc.
Ya do not use a while loop. You can use a Timer and set it to 2-3 seconds and reset it every time u animating and only start interacting or crafting when the timer is not running
-
Need help with Break Manager
I don't think you can retrieve those values tbh, the only method available is getBot().getTimeUntilNextBreak();
- Khal AIO RuneCrafter
-
Khal AIO Smither
Khal Snither (All in One) updated to V1.17: - Banking efficiency improved - Banks noted items on start Live soon! Enjoy
- Khal Blast Furnace
-
Khal AIO Crafter
Khal Crafter updated to V3.08: - Banking improved - Banks noted items on start Live soon! Enjoy
-
Khal AIO Magic
Khal Magic updated to V1.38: - Banking fficiency improved - Banks noted items on start Live soon! Enjoy
-
Khal Guardians Of The Rift
Enjoy the trial!
-
Need help with Break Manager
return true => starts the breakhandler retrun false => stopts the breakhandler Every other logic is up to you how you want to implement it ^^ Have some kind of method in the breakmanager to set a variable which you can check in shouldActivate
-
Khal Motherlode
Hmm it should upgrade to it but only when it's going to bank in the chest, if you are using the depositbox it will never do it
-
Khal AIO Magic
I was looking at my crafter It can just do withdraw all right?
- 🔥 KHAL SCRIPTS TRIALS 🔥 HIGHEST QUALITY 🔥 BEST REVIEWS 🔥 LOWEST BANRATES 🔥 TRIALS AVAILABLE 🔥 DISCORD SUPPORT 🔥 ALMOST EVERY SKILL 🔥 CUSTOM BREAKMANAGER 🔥 DEDICATED SUPPORT
-
Khal Guardians Of The Rift
Sure you can! Enjoy
-
Khal AIO Plankmaker
Ya but that's just chopping oaks right? Nothing to do with plankmaking
- 🔥 KHAL SCRIPTS TRIALS 🔥 HIGHEST QUALITY 🔥 BEST REVIEWS 🔥 LOWEST BANRATES 🔥 TRIALS AVAILABLE 🔥 DISCORD SUPPORT 🔥 ALMOST EVERY SKILL 🔥 CUSTOM BREAKMANAGER 🔥 DEDICATED SUPPORT