RuneMate / Issues

Client and API Issue tracking. See README for more information.
8 stars 0 forks source link

Web Wizard's Tower Basement #50

Closed simwij closed 5 years ago

simwij commented 5 years ago

Describe the bug The web does not seem to support walking into the basement of the Wizard's tower. It is required for the Rune Mysteries quest.

Affected game modes: OSRS (have not tested rs3)

RuneMate version: 2.96.3

To Reproduce Steps to reproduce the behaviour:

  1. Create a web path to the coordinate (3103, 9573, 0) (it is down the basement at Sedridor, see ss)
  2. Path is null

Please include the code used to produce this bug.

// Kotlin
val webPath = Traversal.getDefaultWeb().pathBuilder.buildTo(Coordinate(3103, 9573, 0))  
assert(webPath != null)

Expected behaviour Ability to walk down the basement, and especially to the Wizard Sedridor

Screenshots Scroll down for the items in text so you don't have to write from the images. webaddition 1 webaddition 2 webaddition 3 webaddition 4

Objects in order: Ladder to the basement Coord: Coordinate(3104,3162,0) Action: Climb-down Type: Primary

Ladder up from the basement: Coord: Coordinate(3103, 9576, 0) Action: Climb-up Type: Primary

Door to Sedridor when closed: Coord: Coordinate(3108,9570,0) Action: Open Type: Boundary

Door to sedridor when open probably not needed, but is the last screenshot.

ccarpenter04 commented 5 years ago

I think what may actually be needed is some hardcoded data for the two doors in the tower since they don't seem to be being found by the heuristic.

simwij commented 5 years ago

I think what may actually be needed is some hardcoded data for the two doors in the tower since they don't seem to be being found by the heuristic.

Are you talking about the two doors in the tower before gaining access to the ladder? I have tested the web path that far, and those two doors are opened by stepping.

ccarpenter04 commented 5 years ago

Oh really, interesting. Can it also handle the basement door too? I know you said your not sure, but it would be nice if you could find out for me the status of all the doors in the basement (I think there are 2 or 3 right?

simwij commented 5 years ago

I will go ahead and test that, I just assumed there was no support at all in the basement since the ladder wasn't supported. Is it necessary to add all doors? I can't really find a use for any door other than to the wizard Sedridor. The other door just leads to an empty room with nothing in it.

ccarpenter04 commented 5 years ago

I may be mistaken but I thought there was a low level quest that involves a coffin or something in the other room.

simwij commented 5 years ago

Well shame on me, the doors actually work. So never mind that. Then the ladder is all that needs adding :D

ccarpenter04 commented 5 years ago

The web should start to successfully generate a path down there shortly, in addition the models orientation have been fixed in the next client update (just something I noticed in your screenshots).

simwij commented 5 years ago

Yes, it now navigates down there. Good job!