Difference between revisions of "EVENT TYPE CREATURE ENTERS DIALOGUE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{needs review}} {{event |sourcefile=script.ldf |when= |from= |to= }} CREATURE_ENTERS_DIALOGUE')
 
(found code handling this in module core)
Line 4: Line 4:
 
|when=
 
|when=
 
|from=
 
|from=
|to=
+
|to=modules
 +
|tocategory1=module
 +
|sortkey=CREATURE_ENTERS_DIALOGUE
 +
|object0name=oCreature
 +
|object0desc=
 
}}
 
}}
 
[[Category:Event types|CREATURE_ENTERS_DIALOGUE]]
 

Revision as of 17:55, 19 August 2009

The documentation on this page is incomplete, obsolete, or otherwise in need of a thorough review. The current content may provide a good starting point for this, but do not rely on its accuracy when using it to design content.

Source:
script.ldf
Sent when:
Sent from:
Sent to:
modules
Parameters:

Usage

case EVENT_TYPE_CREATURE_ENTERS_DIALOGUE:
{
object oCreature = GetEventObject(ev, 0); //

// insert event-handling code here

break;
}