brad734 3 Posted July 3, 2023 I tired searching but I couldn't find a recent tutorial that seemed to make sense. How can I add interactable objects to the web walker. For example in the Varrock sewers the #walk method does not slash the web when walking to red spiders, so fails to traverse parts of the dungeon effectively and clicks between nodes where it cannot walk without first slashing the web. How could I add the web "slash" into the web walker in this situation?
StannyBoiii 0 Posted July 25, 2023 Rough example: GameObject webEntrance = GameObjects.closest(gameObject -> gameObject.getID() == XXXXX); if (webEntrance != null) { if (webEntrance.interact("Slash")) { log("Interacting with web");
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now