Everything posted by FrostBug
- FrostHunter
-
PERMANENT BAN! (NOT HAPPY) :-(
:doge:
-
Override default run behaviour in webwalker
WalkingEvent has a setMinDistanceThreshhold, but this does not seem to be in WebWalkEvent yet. Try setting a break condition to check the distance to the goal. wwEvent.setBreakCondition(new Condition() { @Override public boolean condition() { return myPosition().distance(destination) <= threshhold; } }); (wrote in hand, probably got errors)
-
Override default run behaviour in webwalker
Because the webwalker is still a new feature, and nobody has made an official suggestion in the suggestions section.
-
Area values
You can use the Entity Debugger tool in the client to show mouse tile position
-
Fruity Barrows (Frost Barrows)
Did you fk up your zoom level or something? Screenshot pls
-
[FREE] CinnaNMZ BETA
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.
-
High ban rate on agility?
http://osrsbanrates.com
- best scripter
-
Custom Obstacle Handing?
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.
-
Custom Obstacle Handing?
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.
-
Fruity Barrows (Frost Barrows)
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)
-
Fruity Barrows (Frost Barrows)
Pushed a fix. Wasn't aware that salamanders cancelled all player animations
-
Stuck in dialogue
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(); }
-
How often Monster indexes change
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.
-
Fruity Barrows (Frost Barrows)
Seems like osbuddy is down atm. Prices are loaded from there
-
API docs for ConditionalSleep and ConditionalLoop
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.
-
Scripts in script
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?
-
Script won't start?
add a try-catch around all the content of your onStart method and print the exception
- FrostHunter
-
Main/Zulrah account
A decent zulrah account is probably 100m+
-
OMFG?!? WHAT IS THIS MADNESS?
#Acerd4CBA
-
Widget help - wrong option being clicked
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?
-
Widget help - wrong option being clicked
Like people have said, we need some context, as the actual code OP posted isn't incorrect Widgets#interact has these checks built in
- CB banned again?