Class BankWebNode
- java.lang.Object
-
- org.dreambot.api.methods.walking.web.node.AbstractWebNode
-
- org.dreambot.api.methods.walking.web.node.impl.BankWebNode
-
- All Implemented Interfaces:
Locatable
public class BankWebNode extends AbstractWebNode
Bank web node
-
-
Constructor Summary
Constructors Constructor Description BankWebNode(int x, int y)
BankWebNode(int x, int y, int z)
BankWebNode(org.dreambot.internal.web.WebNodes.WebNode node)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebNodeType
getType()
Returns the WebNodeType of this node, used during path finding to ensure they're not disabled by the scriptboolean
isValid()
Checks the validity of this web node to see if it should be considered at all during path finding-
Methods inherited from class org.dreambot.api.methods.walking.web.node.AbstractWebNode
addConnections, addDualConnections, addIncomingConnections, addOutgoingConnections, clear, distance, equals, execute, forceNext, getConnections, getGridX, getGridY, getIndex, getRequiredItems, getTile, getTileReference, getWeight, getX, getY, getZ, hashCode, hasRequirements, initializeConnections, removeConnections, removeDualConnections, setConnections, setWeight, toString, walkingDistance
-
Methods inherited from interface org.dreambot.api.wrappers.interactive.Locatable
canReach, canReach, tileDistance
-
-
-
-
Method Detail
-
getType
public WebNodeType getType()
Description copied from class:AbstractWebNode
Returns the WebNodeType of this node, used during path finding to ensure they're not disabled by the script- Overrides:
getType
in classAbstractWebNode
- Returns:
- the type of web node
-
isValid
public boolean isValid()
Description copied from class:AbstractWebNode
Checks the validity of this web node to see if it should be considered at all during path finding- Overrides:
isValid
in classAbstractWebNode
- Returns:
- true if it's usable, false otherwise
-
-