Class QuetzalWebNode
- java.lang.Object
- 
- org.dreambot.api.methods.walking.web.node.AbstractWebNode
- 
- org.dreambot.api.methods.walking.web.node.impl.pathaware.SelfConnectingWebNode
- 
- org.dreambot.api.methods.walking.web.node.impl.pathaware.QuetzalWebNode
 
 
 
- 
- All Implemented Interfaces:
- PathAwareWebNode,- Locatable
 
 public class QuetzalWebNode extends SelfConnectingWebNode 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanexecute(AbstractWebNode next)This is the same asAbstractWebNode.execute()except the web walker will pass the next web node in the path after this node.java.util.List<ConditionalLocation>getLocations()static java.util.List<QuetzalWebNode>getQueztelWebNodes()WebNodeTypegetType()Returns the WebNodeType of this node, used during path finding to ensure they're not disabled by the script- 
Methods inherited from class org.dreambot.api.methods.walking.web.node.impl.pathaware.SelfConnectingWebNodegetConnections, getLocation, hasRequirements, toString
 - 
Methods inherited from class org.dreambot.api.methods.walking.web.node.AbstractWebNodeaddConnections, addDualConnections, addIncomingConnections, addOutgoingConnections, clear, distance, equals, execute, forceNext, getGridX, getGridY, getIndex, getRequiredItems, getTile, getTileReference, getWeight, getX, getY, getZ, hashCode, initializeConnections, isValid, removeConnections, removeDualConnections, setConnections, setWeight, walkingDistance
 - 
Methods inherited from interface org.dreambot.api.wrappers.interactive.LocatablecanReach, canReach, getRegionId, tileDistance
 
- 
 
- 
- 
- 
Method Detail- 
getQueztelWebNodespublic static java.util.List<QuetzalWebNode> getQueztelWebNodes() 
 - 
executepublic boolean execute(AbstractWebNode next) Description copied from interface:PathAwareWebNodeThis is the same asAbstractWebNode.execute()except the web walker will pass the next web node in the path after this node.Important note: if your node implements this interface, the walker will call PathAwareWebNode.execute(AbstractWebNode)instead ofAbstractWebNode.execute().- Parameters:
- next- the web node after this node in the web path, or null if this is the last web node
- Returns:
- true if the node is successfully handled, false otherwise
 
 - 
getLocationspublic java.util.List<ConditionalLocation> getLocations() - Specified by:
- getLocationsin class- SelfConnectingWebNode
 
 - 
getTypepublic WebNodeType getType() Description copied from class:AbstractWebNodeReturns the WebNodeType of this node, used during path finding to ensure they're not disabled by the script- Overrides:
- getTypein class- AbstractWebNode
- Returns:
- the type of web node
 
 
- 
 
-