pokemonhuang 1 Posted October 10, 2018 can someone give me a code example of check if door is open and how to open and close it? Also is there a command for check what the chat box says? like to check the chat box saying "you cannot go there"
Pseudo 179 Posted October 10, 2018 I'd imagine a combination of using Map#canReach and checking the actions of the object would allow you to do what you're looking to do: E.g: if (Map.canReach(pos)) { //walk } else if (object.hasAction("Open")) { //open }
pokemonhuang 1 Author Posted October 10, 2018 thank you. just object? i dont have to set the object to something?
Pseudo 179 Posted October 10, 2018 1 hour ago, pokemonhuang said: thank you. just object? i dont have to set the object to something? Well in the example above 'object' would be game object that you're attempting to interact with...
pokemonhuang 1 Author Posted October 10, 2018 dude, how to i instantiate map? is this correct? new Map(this.getClient()).canReach()?
Pseudo 179 Posted October 10, 2018 1 minute ago, pokemonhuang said: dude, how to i instantiate map? is this correct? new Map(this.getClient()).canReach()? You don't need to >.> if (Map.canReach(anyTileThatYouWantToReach)) { //profit }...
pokemonhuang 1 Author Posted October 10, 2018 that doesnt work. intelJ mark that as redflag. i have to instantiate it. and the map api doesnt have a static method for canReach
Recommended Posts
Archived
This topic is now archived and is closed to further replies.