Difference between revisions of "EVENT TYPE PLOT COMPLETED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
Line 11: Line 11:
 
}}
 
}}
 
[[Category:Module events|PLOT_COMPLETED]]
 
[[Category:Module events|PLOT_COMPLETED]]
[[Category:Plot events|PLOT_COMPLETED]]
 
 
[[Category:Event types|PLOT_COMPLETED]]
 
[[Category:Event types|PLOT_COMPLETED]]

Revision as of 06:00, 3 January 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:
The player completes the final step of a quest (moved to completed section of journal)
Sent from:
engine
Sent to:
module
Parameters:

Usage

case EVENT_TYPE_PLOT_COMPLETED:
{
object oModule = GetEventCreator(ev); //
string sName = GetEventString(ev, 0); //

// insert event-handling code here

break;
}