Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. FrostBug

    FrostCaves

    Sorry to hear it. Sounds like audio wasn't configured properly. Did you start the script inside the caves?
  2. Why would you think this returns a MouseDestination
  3. Make sure you don't fire events or do anything else that will keep the script executor busy after calling stop
  4. Nice try, poopbot shill. You've never even used the script:
  5. Unfortunately can't tell anything from this. Do you have the full log file still? There might be a stack-trace I can use from the first time the error was thrown (Please use spoiler tag or post in PM)
  6. It's an instance, which gets loaded in a random "instance slot" in the instance space; hence the changing coordinates. What you CAN do is create the area by looking at the 'Local coordinates' of the region that the instance is loaded in. Local coordinates are coordinates relative to the region base (the lower left corner of the currently loaded region). Even though the instance is loaded in different places, the local coordinates of objects, npcs and positions will be the same every time. At least until you wander far enough to trigger a new region load. So upon entering the instance you could make the Area with something like: Position southWestCorner = new Position(50, 50, 0).translate(getMap().getBaseX(), getMap().getBaseY()); Position northEastCorner = new Position(100, 100, 0).translate(getMap().getBaseX(), getMap().getBaseY()); Area fightArea = new Area(southWestCorner, northEastCorner); assuming the Area spans from x:50, y:50 to x:100, y:100 in the local region
  7. FrostBug

    FrostCaves

    I have not. But disabling prayer flicking seems to help.
  8. With the new API introduced a few client versions back, the proper approach without downloading from the web would be: In the local script project: - Create a 'resources' package/folder in the root (not in a sub-package) - Put resource files in this folder - Get the resources using Script#getScriptResourceAsStream (provide relative path, eg. "resources/image.png") On the SDN: - Put the resources folder at the root level of your script directory > ScriptName --> src ----> scriptname.mainpackage --> resources ----> image.png ----> font.ttf
  9. FrostBug

    FrostHunter

    Script is now updated.
  10. Unfortunately can't help you there. Did you select e-Check payment or something? Those take a while.
  11. FrostBug

    FrostHunter

    Rewritten script should be available when the SDN updates today. Will let you know when it goes live.
  12. Lower your minimum ammo setting to less than 300
  13. I would much prefer not to. Not everyone uses the same settings, or the same stats. Skeletons hit quite a lot more frequently on players with low def; as it is now it prioritizes lower level enemies for that reason. Additionally there wont always be skeletons on the shortest path.
  14. That's an outdated client version init? Doesn't look like an error related to the script; so probably either the outdated client, your java version, or your OS
  15. Not even commenting on the fact that he's using a List like a Map
  16. When using mirror mode I recommend gathering your potions in a single tab (with few enough items to not have a scroll bar) Mirror mode is a little unstable when it comes to banking
  17. I would very much assume there's a reason. Try going thru all the troubleshooting steps.
  18. FrostBug

    FrostCaves

    Can you send me the full log file for that run by PM? Located in the osbot data directory
  19. Can you actually allow socket permissions thru CLI? I know it's blocked by default
  20. FrostBug

    FrostCaves

    If I remember correctly, wave 61 should be 1x 360 and 2x 180; never seen issues with such a wave before. Could you maybe provide the log file? All I can really recommend is going thru the troubleshooting steps (Checking configurations; making sure you aren't on mirror mode) and/or restarting client / trying a different world
  21. FrostBug

    FrostHunter

    Everything is done and tested except for obstruction detection/hopping (flowers, other players traps etc.) Possible sunday release. Initially still only supporting chinchompas, but with the new framework it will be easy to add birds and ferrets as well EDIT: Not entirely done testing yet. Soon tho.
  22. FrostBug

    FrostCaves

    Don't think its broken atm; but if you notice a particular function not working after ydays update, please do elaborate. Make sure you go thru the troubleshooting steps first, and that your ping to the world you use is sufficiently low for prayer flicking.
  23. Try checking all the troubleshooting steps. Sounds like a graphic setting might be off (zoom / resizable) it uses the non-full potions to prevent them from piling up (eg. having tons of un-used (1), (2) and (3)'s left after a session and claiming no more pots left) Try putting your potions in a separate bank tab; I think there are still some issues with bank scrolling on mirror mode.
×
×
  • Create New...