fattyxp
Member!
I'm not sure how many people are aware of the bug that doesn't allow you to do countess without a teleporting character, but I think I might have come up with a couple possible solutions and I need help with some of the variables.
My first idea is to use the commPathing.GotoObject method and have it path out how to get to the treasure chest in the countess room. This is if that chest is a valid object and I would need the info on it if it is.
My second idea is to use the commPathing.GotoDest method with coords in her room depending on which way the level is setup.
Currently the countess script uses DM_MoveTo to move from the door to a safe place to detect countess immunes/placement. This function should call DM_WalkTo if the teleport skill is not available. So with the teleport skill definatly not being available on my barb there is either a problem with skill detection or pathing detection of the wall.
I'm not sure if anyone has tried to fix this yet or not, so I'm not sure what has been tried and what hasn't or if it's a problem with detecting the wall.
Ok as a first fix attempt In went into the CXP_FindCountess function and changed the DM_MoveTo's to DM_WalkTo's so that there is no chance that it is attempting to teleport and the bug is still happening. So this is obviously a problem with the pathing detecting the walls existance.(or with the original coords supplied) So now I'd like to attempt to figure out coords to move around the wall manually depending on level setup, a little help here would be appriciated. as I don't know the ranges of coords that are valid for this.
My first idea is to use the commPathing.GotoObject method and have it path out how to get to the treasure chest in the countess room. This is if that chest is a valid object and I would need the info on it if it is.
My second idea is to use the commPathing.GotoDest method with coords in her room depending on which way the level is setup.
Currently the countess script uses DM_MoveTo to move from the door to a safe place to detect countess immunes/placement. This function should call DM_WalkTo if the teleport skill is not available. So with the teleport skill definatly not being available on my barb there is either a problem with skill detection or pathing detection of the wall.
I'm not sure if anyone has tried to fix this yet or not, so I'm not sure what has been tried and what hasn't or if it's a problem with detecting the wall.
Ok as a first fix attempt In went into the CXP_FindCountess function and changed the DM_MoveTo's to DM_WalkTo's so that there is no chance that it is attempting to teleport and the bug is still happening. So this is obviously a problem with the pathing detecting the walls existance.(or with the original coords supplied) So now I'd like to attempt to figure out coords to move around the wall manually depending on level setup, a little help here would be appriciated. as I don't know the ranges of coords that are valid for this.