Hi again all ran into another weird issue. I have created a new helmet with a custom enchantment that adds a modified version of the soulcairn keeper black smoke and glowing eyes effect. The problem is the effect is applied just fine when a non player actor equips the helm but when the player equips the helm the effect is not applied.
screen shot: http://www.nexusmods.com/skyrim/Images/650296/?
The player is the one on the right.
I even tried adding the following script to the helm but still it would not apply the visual effect to the player. Does anyone know how to fix this???
Scriptname nightspawnhelmetscript extends ObjectReference
SPELL Property NSPWFX Auto
Event OnEquipped(Actor akActor)
If akActor == Game.GetPlayer()
Game.GetPlayer().addspell (NSPWFX)
EndIf
EndEvent
Event OnUnequipped(Actor akActor)
If akActor == Game.GetPlayer()
Game.GetPlayer().removespell (NSPWFX)
EndIf
EndEvent