Difference between revisions of "EVENT TYPE EXIT"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(split out of event)
 
(formatting)
Line 1: Line 1:
*<b>Sent When:</b> A creature exits the object receiving the event
+
{{event
*<b>Sent From:</b> engine
+
|when= A creature exits the object receiving the event
*<b>Sent To:</b> AOEs, areas, triggers
+
|from= engine
Parameters:
+
|to= [[AOE]]s, [[area]]s, [[trigger]]s
*<b>Creator:</b> creature exiting the object
+
|creatorname = oExiter
 +
|creatordesc= creature exiting the object
 +
}}
  
 
[[Category:Event types|EXIT]]
 
[[Category:Event types|EXIT]]

Revision as of 17:56, 24 July 2009

Source:
[Undocumented]
Sent when:
A creature exits the object receiving the event
Sent from:
engine
Sent to:
AOEs, areas, triggers
Parameters:
  • Creator: creature exiting the object

Usage

case EVENT_TYPE_EXIT:
{
object oExiter = GetEventCreator(ev); // creature exiting the object

// insert event-handling code here

break;
}