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?

    Initially, just nearestNpc.getHealthGauge(). But then getPercent() also threw a NullException, even when getHealthGauge() was NOT null. Weird. So I tried to null check both of them individually, which didn't work for getPercent, it still threw the error. Anyway, got it sorted by doing...
  2. 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...
  3. 6

    Jagex's secret police

    Interesting. If you tried to replicate this, how long do you think it would take for this to happen to a new account?
  4. 6

    Jagex's secret police

    That's not the "Botting Police", it's the bot accidentally clicking and dragging a part of the interface. I've seen it happen with my own eyes. The solution is to make sure the interface is locked (in settings). The ban must have been either coincidence or due to the bot possibly screwing up...
  5. 6

    Resolved Event listener not firing?

    That worked. Thanks.
  6. 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...
  7. 6

    Good job Runemate and Regal

    Definitely agree. OSBot got my account banned within 24 hours. Wasn't suicide botting. Was testing out. Doing 1 hour botting here and there, in between actual playing. Runescape must have detected the different client - perhaps thats why Runemate is so much better, it runs on top of the original...
  8. 6

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

    Running from Botstore (bot doesn't start) spectre.txt: [Debug] Java Home: /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home [Debug] Java Version: 8u171 x64 (Oracle Corporation) [Debug] Maximum Heap Size: 1821MB [Debug] RuneMate Version: 2.84.1 [Debug] Operating System: Mac OS X...
  9. 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