Jump to content

Token

Script Officer
  • Posts

    8433
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Token

    Stealth Quester

    Starting the script while certain quests are in progress is not supported on all quests yet, it is not able to continue on RFD Pirate Subquest from stage 40, only maybe if it's interrupted before stage 30
  2. You missed the case where you are outside the bank but there are no nearby trees, using areas or any other predefined sets of data is generally not a good idea. Remove the areas in your logic and it should look like this private State getState() { Entity treeToChop = objects.closest(tree); if (inventory.isFull() && powerChop == false) return State.BANK; if(inventory.isFull() && powerChop == true) return State.POWERCHOP; if (treeToChop != null) return State.CHOP; else return State.WALK; } And a state that doesn't do anything at all is just bad practice, simply returning from the current loop iteration without performing any actions will yield the same result. PS: you also have the case where you are at the desired location to chop trees but all tree instances are depleted, but since you know the destination you can add this condition to your states Edit: You should post the case CHOP as the error is definitely there
  3. phishers started fishing http://osbot.org/forum/topic/106610-phishers-too-greedy-to-buy-windows/
  4. Token

    Stealth Quester

    Did you start the script at stage 40?
  5. Token

    Stealth Quester

    Did it get stuck because of equipment weight?
  6. Token

    Stealth Quester

    Create a gear preset and load the gear while you have a spell selected on autocast in game, the selected spell will be displayed on the GUI with the other gear components. Only the 16 elemental spells are supported, and it will only take runes for quests that contain combat.
  7. Token

    Stealth Quester

    I'll post the change log if there's any update, except for bug fixes
  8. Token

    Stealth Quester

    Idk... I haven't personally been banned
  9. Token

    Stealth Quester

    Doing previously started quests is not fully supported on every quest, as stated in the instructions, RFD Pirate Subquest cannot continue because the underwater area is not accessible to the webwalker yet
  10. Token

    Stealth Quester

    Should be fixed when the SDN updates
  11. Token

    Stealth Quester

    1) When did this happen? 2) Most likely a recent game update, I pushed a fix for this a few hours ago but may not be live yet
  12. Token

    Stealth Quester

    What quest is that? Did you attempt to do a previously started quest?
  13. I'm using Eclipse for anything Java related
  14. Doesn't really matter, choose whatever IDE you want. Only difference is Intellij is pretty much only used in casual development, while Eclipse is used everywhere in the IT industry. This is because Eclipse is open source, has a much more permissive license and is older.
  15. Token

    Stealth Quester

    Delete your OSBot folder located at C:\Users\<USER>\OSBot\ Did you add a spell that is not supported?
  16. Token

    Stealth Quester

    Yes but that's secret
×
×
  • Create New...