Difference between revisions of "Talk:OnUpdate - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Oss133
imported>Oss133
Line 15: Line 15:


EndEvent
EndEvent


When I Equip the Weapon I get the "Registered" message but i never get the "Updating" message.
When I Equip the Weapon I get the "Registered" message but i never get the "Updating" message.

Revision as of 08:49, 6 March 2012

I have attached a script to a weapon that says somthing like this,


Event OnEquipped()

RegisterForUpdate(5)

Debug.Notification("Registered")

EndEvent

Event OnUpdate()

Debug.Notification("Updating")

EndEvent


When I Equip the Weapon I get the "Registered" message but i never get the "Updating" message.

Anyone have any idea why?

Oss133