Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. 6

    Question Is there a better way to check if NPC is dead?

    Currently using this to delay until the npc is dead: if (nearestNpc.interact("Attack")) { Execution.delayUntil(() -> !nearestNpc.isValid(), () -> false, 10, 60000, 70000); } It works fine, except it's too slow. Between the time that it dies and the time that it becomes invalid, there's a...
  2. 6

    Resolved Event listener not firing?

    I have tried seemingly everything. Why does the following never fire an event (in times when it obviously should): public void execute() { EventDispatcher e = new EventDispatcher(); e.addListener(new SkillListener() { @Override public void onExperienceGained(SkillEvent...
  3. 6

    Bug Bot doesn't load when from bot store but loads fine locally?

    I'm trying to run a very simple bot I wrote, from the bot store. The bot works fine when I test it locally (dev mode), but when I run the one from the bot store it gets stuck on the green loading icon. Here's a video demonstrating it Any idea what's going on? Thanks
Top