Difference between revisions of "EVENT TYPE PARTYPICKER INIT"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (Fixing link)
m (Adding See Also section)
 
Line 8: Line 8:
 
|sortkey=PARTYPICKER_INIT
 
|sortkey=PARTYPICKER_INIT
 
}}
 
}}
 +
== See Also ==
 +
* [[EVENT_TYPE_PARTYPICKER_CLOSED]]
 
[[Category:Event types|PARTYPICKER_INIT]]
 
[[Category:Event types|PARTYPICKER_INIT]]
 
[[Category:Module events|PARTYPICKER_INIT]]
 
[[Category:Module events|PARTYPICKER_INIT]]

Latest revision as of 14:15, 8 March 2013

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:
Just before the partypicker opens
Sent from:
Sent to:
module
Parameters:
None.

Usage

case EVENT_TYPE_PARTYPICKER_INIT:
{

// insert event-handling code here

break;
}

See Also