Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. Did you fk up your zoom level or something? Screenshot pls
  2. OP has the "Banned" usergroup This means that he's banned. This means that he cannot access the forums. This means that he cannot see your post.
  3. Get the rockfalls located on the generated path. With this you can walk to the tile in front of the next rockfall, mine it, continue.
  4. The LocalPathfinder has an overload that takes a clipping graph for path generation. Just get the current clipping graph and set the rock positions to be traversible, and use that with the pathfinder. Then add whatever handling you want. OR do as the others said and make your own pathfinder.
  5. Strange, can you try 2 things for me and let me know if anything changes? 1. Place the potions elsewhere in the bank (if this helps, please let me know where they were) 2. Try it on the standard client (if you were using mirror)
  6. Pushed a fix. Wasn't aware that salamanders cancelled all player animations
  7. Sounds like a bug with the continuation method; perhaps the dialogues are different on tutorial island try something like this instead List<RS2Widget> diag = getWidgets().containingText("Click here to continue"); if(!diag.isEmpty()) { diag.get(0).interact(); }
  8. Monster index is different every time it respawns. It indicates the index that this monster has in the world. The index is useful for tracking specific NPCs if they're unloaded/reloaded. I think what you're looking for is getId and not getIndex.
  9. Seems like osbuddy is down atm. Prices are loaded from there
  10. It is a bit worrying tho, since as Alek has previously implied; if it's not in the API docs, it may be removed without notice at any time.
  11. Make your own custom script executor that calls onStart, onLoop, onExit etc. on instances of your scripts;. and redirects the onPaint, onMessage etc. events to the currently executing script?
  12. add a try-catch around all the content of your onStart method and print the exception
  13. FrostBug

    FrostHunter

    http://osrsbanrates.com
  14. A decent zulrah account is probably 100m+
  15. What do you mean by null checking when changing context? Widgets#interact does have built in null & action check; that's the whole purpose of it being there. Aren't you confusing the Widgets API class with the RS2Widget Interactable class?
  16. Like people have said, we need some context, as the actual code OP posted isn't incorrect Widgets#interact has these checks built in
  17. return list.isEmpty() ? null : list.get(random(list.size()));
  18. The users would need the libraries as well, which they do not have. You'll need to include the library sources or remove the library
  19. Probably has configs, try playing around with the clients config debugger tool
  20. You have to specify equipment to use against all enemy types.
  21. Looks like the update broke some things, thanks for reporting it. I just pushed a hotfix, should be live within 12 hours
×
×
  • Create New...