Difference between revisions of "EVENT TYPE BLOCKED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(formatting)
m (|sourcefile=script.ldf)
Line 1: Line 1:
 
{{event
 
{{event
 +
|sourcefile=script.ldf
 
|when=The current creature's path has been blocked while moving by a creature or door. This event will NOT fire when blocked by placeables who can not change the walk mesh or terrain.
 
|when=The current creature's path has been blocked while moving by a creature or door. This event will NOT fire when blocked by placeables who can not change the walk mesh or terrain.
 
|from=engine
 
|from=engine

Revision as of 20:36, 30 July 2009

Source:
script.ldf
Sent when:
The current creature's path has been blocked while moving by a creature or door. This event will NOT fire when blocked by placeables who can not change the walk mesh or terrain.
Sent from:
engine
Sent to:
creatures
Parameters:
  • Creator: blocking object

Usage

case EVENT_TYPE_BLOCKED:
{
object oBlocker = GetEventCreator(ev); // blocking object

// insert event-handling code here

break;
}

Also, this doesn't exist yet, but we'll need this event to fire for any time that the pathfinding failed.[Undocumented]