Ping14 wrote: Tue Jan 25, 2022 8:37 am
If you're improved invisibility while using G. Sanc. Then this is the old bug in NWN. Those two should never mix.
NWN Wiki wrote:Combining this spell with improved invisibility allows creatures to ignore the etherealness of greater sanctuary. (A bug, since at least version 1.68.) Relogging into a multiplayer server will sometimes fix this bug (but may have other, possibly detrimental, effects).
A seemingly simple fix would be to dispel all invisibility effects before applying the etherealness.
If I'm not mistaken, one line like this in the Greater Sanctuary .nss file, right before the Etherealness effect is applied, should do the trick.
Code: Select all
RemoveSpecificEffect(EFFECT_TYPE_INVISIBILITY, oPC);
And if that doesn't work, looping through all the effects on oPC until it finds the right one might work
