Jump to content

Khaleesi

$250.00 Donor
  • Posts

    27138
  • Joined

  • Last visited

  • Days Won

    216
  • Feedback

    100%

Everything posted by Khaleesi

  1. No they are not added in this script Only normal teleport tabs
  2. it says it walking to the position you started it on. I went from 71-86 doing enfeeble+alch and stun/alch and didn't encounter anything weird Was this when it was trying to take a break?
  3. Let me know, also show me the settings you used so I can try to replicate this myself Mind posting the log aswell?
  4. No I wwon't be adding high alch to this, it increases the bann rates way too much. I did multiple tests and it's not worth, you are better off training purely magic after doing agility Enjoy the trial
  5. Enjoy! With seed pod I assume?
  6. Ya but I was looking into increasing idles anyway, since I was comparing my reaction speed while doing somehting else compared to the current settings
  7. Will take a look at that, humanlike idles mimics the afk behaviour, like watching a movie and afking this. You think it should wait some more?
  8. Was just giving an example. Just check if the object still exists in that case ^^ No need to make things hard, keep it simple and stupid. Never use Onmessage for this kind of things, not very reliable.
  9. Show soms logs? Did you start the client with an acc and NOT defualt? Ya you can't use mirror, because of resizeable ...:/ True ^
  10. That still has some flaws in it. Imagine the trapdoor already being open, you will never enter the trapdoor. You also need to null check in case the object was not found. Also some conditional sleeps makes it alot better ^^ You want to do something like this: RS2Object trapDoor = getObjects().closest("Trapdoor"); if (trapDoor != null) { if (trapDoor.hasAction("Open")) { if (trapDoor.interact("Open")) { new ConditionalSleep(7000) { @Override public boolean condition() { return trapDoor.hasAction("Climb-down"); } }.sleep(); } } else { Position prevPos = myPosition(); if (trapDoor.interact("Climb-down")) { new ConditionalSleep(5000) { @Override public boolean condition() { return myPosition().distance(prevPos) > 50 || myPosition().getZ() != prevPos.getZ(); } }.sleep(); } } }
×
×
  • Create New...