4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
526 B

Scriptname _00E_Theriantrophist_ToggleDetectLife extends activemagiceffect
Spell Property _00E_Theriantrophist_DetectLife Auto
GlobalVariable Property _00E_Theriantrophist_DetectLifeSwitchedOff Auto
Event OnEffectStart(Actor akTarget, Actor akCaster)
if (_00E_Theriantrophist_DetectLifeSwitchedOff.getValueInt() != 0)
_00E_Theriantrophist_DetectLifeSwitchedOff.setValueInt(0)
_00E_Theriantrophist_DetectLife.Cast(self.getTargetActor())
Else
_00E_Theriantrophist_DetectLifeSwitchedOff.setValueInt(1)
Endif
EndEvent