Difference between revisions of "SetOnCrippledLimbEventHandler"
Jump to navigation
Jump to search
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''' has one of his limbs...") |
imported>Jazzisparis |
||
Line 20: | Line 20: | ||
|Type = 1/0 | |Type = 1/0 | ||
}}{{FunctionArgument | }}{{FunctionArgument | ||
|Name = | |Name = actorOrList | ||
|Type = ref | |Type = ref | ||
}} | }} | ||
Line 28: | Line 28: | ||
'''Removes''' the <i>OnCrippledLimbUDF</i> script as a handler of the above. | '''Removes''' the <i>OnCrippledLimbUDF</i> script as a handler of the above. | ||
}} | }} | ||
==Notes== | |||
*As the third argument, either a single reference, or a '''FormList''' of references may be passed. | |||
==Handler Script== | ==Handler Script== | ||
A skeleton handler script for this event: | A skeleton handler script for this event: |
Latest revision as of 19:03, 30 January 2017
< [[::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 has one of his limbs crippled.
When invoked, the script is passed with the Actor as the calling reference ("this"), and a single argument: an integer indicating which limb was crippled:
0 Head 1 Torso 2 Left Hand 3 Right Hand 4 Left Leg 5 Right Leg 6 Brain
Syntax
SetOnCrippledLimbEventHandler handlerScript:ref setORremove:1/0 actorOrList:ref
Example
SetOnCrippledLimbEventHandler OnCrippledLimbUDF 1 SomeActor
Sets the OnCrippledLimbUDF script as a handler to be invoked when SomeActor becomes crippled.
SetOnCrippledLimbEventHandler OnCrippledLimbUDF 0 SomeActor
Removes the OnCrippledLimbUDF script as a handler of the above.
Notes
- As the third argument, either a single reference, or a FormList of references may be passed.
Handler Script
A skeleton handler script for this event:
scn OnCrippledLimbUDF int iWhichLimb ref rActorRef begin Function {iWhichLimb} set rActorRef to this (code) end