Khaleesi
Script Officer
-
Joined
-
Last visited
-
Currently
Viewing Profile: Nym
Everything posted by Khaleesi
-
Khal AIO Thieving
Khal Thiever (All in One) updated to V1.43: - Resolved issue with isStunned check Live soon! Enjoy!
-
Khal Guardians Of The Rift
Sure contact me on Discord ๐
- Khal AIO Herblore
-
Khal Guardians Of The Rift
Never seen that before myself and I'm running a few account there, but I'll take a closer look ^^
- Khal Wintertodt
- Khal Guardians Of The Rift
- ๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
-
Khal Utilities
Only from the GE at this point
- ๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
-
Khal Blast Furnace
Working on it You could already use my utitlities script to do that if you want
-
Khal Wintertodt
You already have an expired trial on this script
- Khal AIO Agility
-
Khal AIO RuneCrafter
Not in the script, you could use my utilities script if you want. But stop using Edgeville to start with and start using ferox as banking location, just buy 1000 ring of duelings and 50k essence or whatever, no need to restock then
- Khal AIO Agility
- 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