SetOnHealthDamageEventHandler
Revision as of 18:06, 24 January 2017 by imported>Jazzisparis (Created page with "{{Function |origin = JIP |summary = Sets/removes the specified '''UDF Script''' as a handler that will be invoked in the event the specified '''Actor''' takes Health damage....")
< [[::Category:Functions|Category:Functions]]
A function added by the JIP NVSE Plugin.
Description
Sets/removes the specified UDF Script as a handler that will be invoked in the event the specified Actor takes Health damage.
When invoked, the script is passed with the Actor as the calling reference ("this"), and two arguments: the amount of damage taken and, if the damage resulted from being hit by another actor, the reference of that actor, otherwise (if the damage resulted from falling, for example) 0.
Syntax
SetOnHealthDamageEventHandler handlerScript:ref setORremove:1/0 actor:ref
Example
SetOnHealthDamageEventHandler OnHealthDamageUDF 1 SomeActor
Sets the OnHealthDamageUDF script as a handler to be invoked when SomeActor takes Health damage.
SetOnHealthDamageEventHandler OnHealthDamageUDF 0 SomeActor
Removes the OnHealthDamageUDF script as a handler of the above.
Handler Script
A skeleton handler script for this event:
scn OnHealthDamageUDF float fDamageAmount ref rSourceRef ref rActorRef begin Function {fDamageAmount, rSourceRef} set rActorRef to this (code) end