Difference between revisions of "EVENT TYPE PERCEPTION DISAPPEAR"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(formatted)
(|sourcefile=script.ldf)
Line 1: Line 1:
 
{{event
 
{{event
 +
|sourcefile=script.ldf
 
|when= A creature exits the perception area of creature receiving the event
 
|when= A creature exits the perception area of creature receiving the event
 
|from= [[engine]]
 
|from= [[engine]]

Revision as of 20:45, 30 July 2009

Source:
script.ldf
Sent when:
A creature exits the perception area of creature receiving the event
Sent from:
engine
Sent to:
creatures
Parameters:
  • Creator: The creature whose perception system detected a disappearing creature.
  • Object 0: Disappearing creature

Usage

case EVENT_TYPE_PERCEPTION_DISAPPEAR:
{
object oViewer = GetEventCreator(ev); // The creature whose perception system detected a disappearing creature.
object oTarget = GetEventObject(ev, 0); // Disappearing creature

// insert event-handling code here

break;
}
  • Bool 0: Owner is hostile towards disappearing creature

Is "bool 0" integer 0?[Undocumented]