Jump to content

Token

Script Officer
  • Posts

    8431
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Token

    Stealth Quester

    Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now It should show up in the script list but they have the same logo, PM me a picture of the in-client script list if you cannot find it I'm afraid I'm not currently doing trials I'm afraid I'm not currently doing trials It looks like the quest was partially done, could you send me a pic of the quest stage it is at in the quest log?
  2. Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now Authed Authed
  3. Token

    Stealth NMZ

    Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now It looks like it's a new boss, I'll add it on next update Authed
  4. There is a problem with the SDN right now, it should work again in a bit
  5. Open OSBot client and start the script Authed
  6. Token

    Stealth Quester

    What quest is that? Could you send me a copy paste of all the messages in the logger?
  7. Token

    Stealth NMZ

    Try the north position
  8. Authed Authed Authed Authed Authed
  9. Idk, it's different for everyone
  10. Token

    Stealth NMZ

    You are trying to do something unusual over there if you have 100 GB of RAM, any context would be useful Making sure the client doesn't produce any sound (there may be multiple sound settings to get rid of) should help if you don't have a sound device installed If all else fails, open C:\Users\<USER>\jagexcache\jagexlauncher\oldschool\oldschoo.prm and change -Xmx384m to -Xmx1024m
  11. You will rarely need threads in scripts. I only use async events to correct API errors, e.g. force event termination for WebWalkEvent which used to take seconds to exit years ago. You should consider all possible approaches before resorting to threading. Threads may be justified as an abstraction of a specific task when you want to prioritize it, e.g. eating, which you decide to apply throughout the entire script and want to immediately stop whatever you were doing in order to eat. Background task; execute for as long as the script is executing; do not stop while random solver is executing or when user pauses the script Thread t = new Thread(() -> { while (getBot().getScriptExecutor().isRunning()) { // code try { Thread.sleep(69); } catch (InterruptedException e) { break; } } }); t.start(); Unknown iteration loop on script thread (do not use unless you can justify the need for this); stop when random solver kicks in or user presses pause/stop; the script executor conditions are added in order to make the pause/stop responsive in the case where the code you are executing catches the InterruptedException raised when they press those buttons; this shouldn't happen because that exception is not supposed to be caught, but adding these conditions prevents it from running forever (client buttons will not respond to clicks) if you want to be sure you don't get the client stuck and have to restart while (condition && getBot().getScriptExecutor().isRunning() && !getBot().getScriptExecutor().isPaused() && !getBot().getScriptExecutor().isSuspended()) { // ... }
  12. Token

    Stealth NMZ

    What was the order of options in the menu? Are you using the new mouse?
  13. Token

    Stealth Quester

    Could you send me a copy paste of the entire logger via PM?
  14. Unlock teleport to fossil island and mushtrees first, visit house on the hill Authed Authed Authed Authed Authed
  15. Token

    Stealth NMZ

    You have to set it to 2-2 if you insist on staying at 1 HP, 2-10 means will go up to 9 HP sometimes
  16. Token

    Stealth Quester

    Has it searched any rocks, or is it the first rock to search? Sure, I'll consider them in the future
×
×
  • Create New...