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. D

    BUG!

    Of course I do, but:
  2. D

    BUG!

    But it's a bug, Unless it's advertised somewhere as a feature "Bot can only be opened once every 30 minutes otherwise you'll break our servers" It's clearly a flaw in the system, if you have no business on the matter other than insulting the op for mentioning something that is a reasonably...
  3. D

    RuneMate Spectre Riddle

    have some clues
  4. D

    RS3 Selling RS3 gold - $.25/M

    Brought 150m, went first. Great seller ^_^ put up with my banter during trade.
  5. D

    Resolved Restart bot during runtime

    But the path being null is the problem. It just found the same path numerous times before, then suddenly it doesn't exist.
  6. D

    Bug My bot just walks between 2 tiles. I can't figure out why.

    there's something wrong with your >Walk To Wheel Area >Open Interface Bit Maybe your checks are a bit iffy on it?
  7. D

    Resolved Restart bot during runtime

    If you care to elaborate on which basic things might be causing a loop. Since my script is literally: >Inventory Full >If In Bank >Bank >else >Walk To Bank >else >If In Field >Pick >else >Walk To Field and just a random chance in...
  8. D

    Resolved Restart bot during runtime

    All I can Suggest is make a custom web. In most cases you're likely in an area the default web doesn't actually support so it falls back on the other path finding methods. I've been using custom webs and have stopped having this Issue.
  9. D

    OSRS Buying private woodcutting bot.

    Oooo didn't know it was 1:1 :o Might have to start releasing some stuff.
  10. D

    Resolved Restart bot during runtime

    I'll contribute to this by also saying, Clearly within a region a region path can work 49 times then suddenly just be "Nope" Not finding that same path I just found 49 times. and the whole script just stops. No errors, just the path finder refusing to detect the path anymore
  11. D

    OSRS Buying private woodcutting bot.

    Then your best friend will be the 3 hour limit
  12. D

    Bug My bot just walks between 2 tiles. I can't figure out why.

    Is it stuck trying to walk to the area?
  13. D

    Bug My bot just walks between 2 tiles. I can't figure out why.

    Might be the way you query it. Also with your checks since this will just be looping you can format everything with more conditions. It doesn't need to all happen in one run through, especially accounting for error. I'd imagine it to look more like this private void handleSpin() {...
  14. D

    Bug My bot just walks between 2 tiles. I can't figure out why.

    The script will auto destroy it causing you to walk back to the field for 1 flax :P. There are two ways you could overcome this :) 1. GameEvents.RS3.UNEXPECTED_ITEM_HANDLER.disable(); in your onstart 2. private State currentState(){ if (Inventory.isFull() ||...
  15. D

    Bug My bot just walks between 2 tiles. I can't figure out why.

    IMO, The Simplest Modification To Accommodate : private State currentState(){ if (Inventory.isFull()){ if(Inventory.containsAnyOf("Flax")){ if(wheelArea.contains(Players.getLocal())){ return State.SPIN; }else{...
Top