Difference between revisions of "OnCellEnter"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Pintocat
(Created page with "{{Function |origin = LU |summary = Passes the entered cell to the UDF when the player changes cells. |name = OnCellEnter |returnVal = cell |returnType = form |arguments...")
 
imported>Pintocat
 
Line 25: Line 25:
*[[Event_Handling]]
*[[Event_Handling]]
[[Category:Functions_(Lutana)]]
[[Category:Functions_(Lutana)]]
[[Category:Events_(Lutana)]]

Latest revision as of 23:24, 3 March 2017

< [[::Category:Functions|Category:Functions]]

A function added by the Lutana NVSE plugin.

Description

Passes the entered cell to the UDF when the player changes cells.

Syntax

[help]
(cell:form) OnCellEnter UDFForm:UserDefinedFunction

Example

SetEventHandler "OnCellEnter" MyUDF

Handler Script

A skeleton handler script for this event:

scn	 MyUDF
ref	 rEnteredCell
BEGIN Function {rEnteredCell}
(code)
END

See Also