Difference between revisions of "EVENT TYPE DIALOGUE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(formatting)
m (|sourcefile=script.ldf)
Line 1: Line 1:
 
{{event
 
{{event
 +
|sourcefile=script.ldf
 
|when= An object tries to initiate dialog with the object receiving the event, either by clicking or by scripting
 
|when= An object tries to initiate dialog with the object receiving the event, either by clicking or by scripting
 
|from= engine (clicking on object to talk) or scripts (manually sending this event)
 
|from= engine (clicking on object to talk) or scripts (manually sending this event)

Revision as of 20:40, 30 July 2009

Source:
script.ldf
Sent when:
An object tries to initiate dialog with the object receiving the event, either by clicking or by scripting
Sent from:
engine (clicking on object to talk) or scripts (manually sending this event)
Sent to:
creatures, placeables
Parameters:
  • Creator: Initiating object
  • String 0: Dialog to initiate, "" to use default object dialog

Usage

case EVENT_TYPE_DIALOGUE:
{
object oInitiator = GetEventCreator(ev); // Initiating object
string sDialog = GetEventString(ev, 0); // Dialog to initiate, "" to use default object dialog

// insert event-handling code here

break;
}