Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug Interacting with an unreachable banker

Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,771
Varrock west bank. Tries to interact with that banker which you can never get to because the door is locked.

Tried both of these. @Cloud
Code:
Banks.newQuery().surroundingsReachableFrom(player).results().nearest()
Banks.getLoaded().nearest()


Screenshot 2016-06-18 13.02.17.png
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Varrock west bank. Tries to interact with that banker which you can never get to because the door is locked.

Tried both of these. @Cloud
Code:
Banks.newQuery().surroundingsReachableFrom(player).results().nearest()
Banks.getLoaded().nearest()


View attachment 955
Does she move about that small area at all or is it a single coordinate? Perhaps check to see if bankers are next to a bank booth in the client? Thoughts?
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,771
Does she move about that small area at all or is it a single coordinate? Perhaps check to see if bankers are next to a bank booth in the client? Thoughts?
I don't think they move around. And yeah that might be good assuming there are no instances where usable bankers aren't near a booth.
 
Joined
Dec 10, 2014
Messages
3,255
Does she move about that small area at all or is it a single coordinate? Perhaps check to see if bankers are next to a bank booth in the client? Thoughts?
It's a single coordinate, I think I used to have her coordinate in a blacklist when searching for banks.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
It's a single coordinate, I think I used to have her coordinate in a blacklist when searching for banks.
A blacklist is a pretty cruddy way to handle it though, there should be a universal solution in place. Are there "free range" bankers that aren't next to a bank booth? If so, are they always reachable?
 
Joined
Dec 10, 2014
Messages
3,255
A blacklist is a pretty cruddy way to handle it though, there should be a universal solution in place. Are there "free range" bankers that aren't next to a bank booth? If so, are they always reachable?
Yeah, it definitely was a bandaid fix xD

The moving bankers that I can think of are always reachable...
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,771
@Cloud There's also one in the osrs draynor bank (probably rs3 as well) that is standing at the back of the bank behind the other bankers and isn't moving or near a booth. This one is an issue because it's the closest banker to the trees so it tries to interact with him which causes the player to run to a tile outside the bank that's in line with that banker and it just gets stuck there (only occurs with the banker that can't be interacted with).
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
@Cloud There's also one in the osrs draynor bank (probably rs3 as well) that is standing at the back of the bank behind the other bankers and isn't moving or near a booth. This one is an issue because it's the closest banker to the trees so it tries to interact with him which causes the player to run to a tile outside the bank that's in line with that banker and it just gets stuck there (only occurs with the banker that can't be interacted with).
So what do you think we should use as a condition for a valid banker? Be next to a game object with the action Bank or be reachable? Or does that "Banker" not have the option "Bank"?
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,771
So what do you think we should use as a condition for a valid banker? Be next to a game object with the action Bank or be reachable? Or does that "Banker" not have the option "Bank"?
The banker has the bank option. I think the best option would be for it to be a valid banker it needs to either be next to a booth or be reachable
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,771
@SlashnHax @Cloud Would be great if this could be implemented soon. Looking like im going to have to write my own workaround because it kind of breaks banking in certain locations...
 
Joined
Sep 20, 2015
Messages
24
Why not use the bank booth? and do reachable?
If you stuck with the bankers for normal banks it would have to be next to a bank booth, but would that make bankers that are not near a booth stop working? Tzhaar for example.

I found this after my Sudofisher became stuck in Draynor with the same problem Aidden had, and MaxiWC tried to bank at the cooking guild. -.-
 
Top