Spoiler
Scriptname aaHCMORHealthScript extends ObjectReference
Event OnLoad()
RegisterForUpdate(2)
Debug.Notification("Item has Registered on Load")
EndEvent
Event OnEquipped(Actor akActor)
RegisterForUpdate(2)
Debug.Notification("Item has Registered on Equipped")
EndEvent
Event OnUpdate()
Debug.Notification("Item is Updating")
EndEvent
Event OnLoad()
RegisterForUpdate(2)
Debug.Notification("Item has Registered on Load")
EndEvent
Event OnEquipped(Actor akActor)
RegisterForUpdate(2)
Debug.Notification("Item has Registered on Equipped")
EndEvent
Event OnUpdate()
Debug.Notification("Item is Updating")
EndEvent
When I equip the dagger I see the "Item has Registered on Equipped" but I never see the "Item is Updating"
Can anyone tell me why?
