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.
 
 
 

16 lines
518 B

Scriptname _00E_EPSystem_VeryWellRestedBonus extends activemagiceffect
Event OnEffectStart(Actor akTarget, Actor akCaster)
_00E_EPSystem_VeryWellRested.SetValueInt(1)
Debug.MessageBox("Rested set" + _00E_EPSystem_VeryWellRested.GetValueInt() as Int)
EndEvent
Event OnEffectFinish(Actor akTarget, Actor akCaster)
_00E_EPSystem_VeryWellRested.SetValueInt(0)
Debug.MessageBox("Rested set" + _00E_EPSystem_VeryWellRested.GetValueInt() as Int)
EndEvent
GlobalVariable Property _00E_EPSystem_VeryWellRested Auto