0magma0 Posted May 14, 2010 Share Posted May 14, 2010 I've made a ring that requires 2 different effects, depending on the gender of the actor.but somehow the ring does nothing... what i used in the enchantmentbegin ScriptEffectStart if (GetIsSex male) PlayMagicShaderVisuals GhostEffect saa 0.1 SetRestrained 1 else PlayMagicShaderVisuals effectCharm SetRestrained 1 EndIf End begin ScriptEffectFinish if (GetIsSex male) StopMagicShaderVisuals GhostEffect saa 1 SetRestrained 0 else StopMagicShaderVisuals effectCharm SetRestrained 0 EndIf End can it be i need to use a ref? and if so which ref must i use to get the wearer? Link to comment Share on other sites More sharing options...
The_Vyper Posted May 15, 2010 Share Posted May 15, 2010 For this, a ref is not necessary. The problem here is that the script doesn't know when to start. Change Begin ScriptEffectStart and Begin ScriptEffectFinish to Begin OnEquip and Begin OnUnequip respectively. Link to comment Share on other sites More sharing options...
Recommended Posts