RetroBot 35 Posted July 21, 2017 I've always had trouble walking to lumbridge bank before I made my own method. However while running tests with walking to the nearest bank I have found out it's because dreambot doesnt account the z coordinate when grabbing the distance. Here is a screenshot showing what I mean. http://i.imgur.com/zK3mFZY.png
Manly 879 Posted July 21, 2017 This is known that the web only works for z = 0. You gotta add your own checks for the z co ord.
campyder 3 Posted July 21, 2017 its bcz dreambot is only on the surface it doesnt realy support upstairs or downstairs you will have to make a method for you yourself
rokaHakor 171 Posted July 21, 2017 Yeah I had to do something like if(bank.distance(getLocalPlayer()) > 9 || bank.getZ() != getLocalPlayer().getZ()) { // walk to bank } else { // open bank } So it would walk to the top of Lumbridge castle to bank.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.