Difference between revisions of "OnPlayerGrab"
Jump to navigation
Jump to search
imported>Pintocat (Created page with "{{Function |origin = LU |summary = Event block type that calls the UDF when the when the player picks up (Template:Control_Cod...") |
imported>Pintocat |
||
Line 55: | Line 55: | ||
[[Category:Functions_(Lutana)]] | [[Category:Functions_(Lutana)]] | ||
[[Category:Events_(Lutana)]] |
Latest revision as of 22:30, 3 March 2017
< [[::Category:Functions|Category:Functions]]
A function added by the Lutana NVSE plugin.
Description
Event block type that calls the UDF when the when the player picks up (Control Code 27 ) the form or form in the formlist. Grabbed (ref) is passed to the UDF. Can be filtered with a form or formlist.
Syntax
(grabbedRef:ref) SetEventHandler "OnPlayerGrab" myUDF:userDefinedFunction
Example with no filtering
SetEventHandler "OnPlayerGrab" MyUDF scn MyUDF ref rGrabbedRef begin function {rGrabbedRef} end function
Example with filtering by a form
SetEventHandler "OnPlayerGrab" ""::someForm MyUDF scn MyUDF ref rGrabbedRef begin function {rGrabbedRef} end function
Example with filtering by formlist
SetEventHandler "OnPlayerGrab" ""::someFormList MyUDF scn MyUDF ref rGrabbedRef begin function {rGrabbedRef} end function