Jump to content

Token

Script Officer
  • Posts

    8431
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Token

    Stealth Quester

    java -jar pathtojar -debug 5005
  2. Token

    Stealth Quester

    It does't affect memory allocation. If you start osbot with the option -debug 5005 how much memory does it allocate by default?
  3. Token

    Stealth Quester

    Why is -xmt required?
  4. Token

    Stealth Quester

    Which ones? Jungle Potion uses amulet of glory and Tribal Totem uses falador teleports and takes the boat from Port Sarim
  5. Token

    Stealth Quester

    I'm to messed up today Sorry, fixed
  6. Token

    Stealth Quester

    Yes that webwalking bug has persisted through many client versions, but I added code long time ago to break the webwalking events after 5 seconds if it hasn't moved, it shouldn't be an issue unless someone changed the webwalking code in .71 Authed
  7. Token

    Stealth Quester

    That shouldn't be the problem as I've already implemented support for that but I guess I'll have to dig deeper in the code Authed
  8. Token

    Stealth Quester

    Did it not fix itself within a few seconds after the error was thrown (max ~15 seconds) ? What cat were you using? Did it grow/transform during runtime?
  9. java -jar "osbot 2.4.71.jar" -login puzzled:password123 -bot email:password:0000 -allow lowresource,lowcpu,reflection
  10. Token

    Stealth Quester

    Thanks I'll update the price algorithm to better reflect prices on low priced items
  11. Token

    Stealth Quester

    Yes I can auth you if you would like to try
  12. Token

    Stealth Quester

    Authed Authed What happened that made you reset it? What's in the logger? Best F2P food, many monsters hit more than 10 Java command line memory allocation is not done by xmt (I've never personally heard of this flag before), but by -xms and -xmx as far as I know. The number also has to end in m or g meaning megabytes or gigabytes. However, OSBot has a built-in flag for memory allocation -mem which has the same effect as -xmx. Did you try running the script without changing the default memory allocation of the client?
  13. Token

    Stealth Quester

    I added some new dialogue fail safes in some places where I noticed it may get stuck in the dialogue but those are not live yet It shouldn't have any problems in most cases though, this was encountered on very rare test cases
  14. Token

    Stealth Quester

    It will be live whenever the SDN updates. Have you completed any other RFD subquests besides the ones featured on the GUI? Yes, don't forget to select the style before creating the gear preset to use the aggressive style for strength xp. Also a dialogue should popup when attempting to add Shadow of the Storm and will ask you what xp reward should it select at end. I'm not sure if 1 attack can complete it but the script will restock if it runs out of food so can have a few attempts I guess. It will be greatly improved if the client will have a poison hook in the future.
  15. How jagex servers work is random, I'm pretty sure not even they know. They generally don't want people multilogging though as until a few years ago this was considered an offense even on separate worlds. Anything above 1 account per ip may result in a connection error.
  16. Well "The logger says there was an error with too many accounts from the same ip", that's actually runescape refusing your connection because you have too many accounts on the same ip, it's not related to the client as it has no way to connect if jagex refuses to let you connect
  17. Shouldn't work if as he stated before the widget doesn't have interaction actions, but the last resort always works String action = "Smelt X"; if (menu.isOpen()) { Rectangle rect = null; List<Option> options = menu.getMenu(); for (int i = 0; i < menu.getMenu().size(); i++) { if (options.get(i).action.contains(action)) { rect = menu.getOptionRectangle(i); break; } } if (rect != null) { mouse.click(new RectangleDestination(bot, rect)); } else { log("Action not found"); } } Which may be required for some weird old menus that have color tags in them
×
×
  • Create New...