OnCellExit

From the Fallout3 GECK Wiki
Revision as of 22:43, 3 March 2017 by imported>Pintocat (Created page with "{{Function |origin = LU |summary = Passes the exited cell to the UDF when the player changes cells. |name = OnCellExit |returnVal = cell |returnType = form |arguments =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the Lutana NVSE plugin.

Description

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

Syntax

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

Example

SetEventHandler "OnCellExit" MyUDF

Handler Script

A skeleton handler script for this event:

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

See Also