Difference between revisions of "EVENT TYPE CREATURE ENTERS DIALOGUE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(found code handling this in module core)
m (remove redundant category)
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
|tocategory1=module
 
|tocategory1=module
 
|sortkey=CREATURE_ENTERS_DIALOGUE
 
|sortkey=CREATURE_ENTERS_DIALOGUE
|object0name=oCreature
+
|object0name=
|object0desc=
+
|object0desc=Creator
 +
|creatorname=oCreature
 +
|targetname=oModule
 
}}
 
}}

Latest revision as of 00:56, 12 February 2010

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 = GetEventCreator(ev); //
object oModule = GetEventTarget(ev); //

// insert event-handling code here

break;
}