Everything posted by FrostBug
-
FrostCaves
Strange; first time I've seen or heard of that. Could I get you to PM me the full log file for that run?
-
FrostCaves
Sorry to hear it. Sounds like audio wasn't configured properly. Did you start the script inside the caves?
-
Please Stop
- Best way to select item?
- Script stopping, but not on the client.
Make sure you don't fire events or do anything else that will keep the script executor busy after calling stop- Fruity Barrows (Frost Barrows)
Nice try, poopbot shill. You've never even used the script:- Fruity Barrows (Frost Barrows)
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)- how to make an area in the middle of objects
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- FrostCaves
I have not. But disabling prayer flicking seems to help.- Proper way to get assets into resouces folder?
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- FrostHunter
- Fruity Barrows (Frost Barrows)
Unfortunately can't help you there. Did you select e-Check payment or something? Those take a while.- FrostHunter
Rewritten script should be available when the SDN updates today. Will let you know when it goes live.- Fruity Barrows (Frost Barrows)
Lower your minimum ammo setting to less than 300- Fruity Barrows (Frost Barrows)
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.- Certain Script always freezez?
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- scripting_meme.jpg
Not even commenting on the fact that he's using a List like a Map- Fruity Barrows (Frost Barrows)
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- Fruity Barrows (Frost Barrows)
I would very much assume there's a reason. Try going thru all the troubleshooting steps.- FrostCaves
Can you send me the full log file for that run by PM? Located in the osbot data directory- How do bots communicate to each other?
Can you actually allow socket permissions thru CLI? I know it's blocked by default- 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- 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.- Who to contact regarding selling script(s) on OSBot?
Pretty much all you need for publishing scripts to OSBot can be found in the stickies here https://osbot.org/forum/forum/181-sdn-requests/- 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. - Best way to select item?