And the simple script which is here:
Scriptname justatestscript extends activemagiceffectimport debug;*************;PROPERTIES;*************EffectShader property GhostShader autoEvent OnEffectStart(Actor akTarget, Actor akCaster) GhostShader.Play(akTarget) EndEventEvent OnEffectFinish(Actor akTarget, Actor akCaster) GhostShader.Stop(akTarget)EndEvent↑Is the spell i use for testing and its duration is 10 seconds. It works on the dead actor, but doesn't work on the live actor.
For the live actor, I have attached and even simpler script that also doesn't work:
Scriptname mysoulscript extends Actor import debugEffectShader property GhostShader AutoEvent OnLoad() GhostShader.Play(Self)EndEvent
Any help is appreciated.
Edit: I got the first script to work by unchecking Is Ghost, but the actor script attached to the live actor still doesn't work.
