Difference between revisions of "EVENT TYPE PARTYMEMBER ADDED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
Line 11: Line 11:
 
|creatordesc=Module
 
|creatordesc=Module
 
}}
 
}}
[[Category:Event types|PARTYMEMBER_ADDED]]
 
[[Category:Module events|PARTYMEMBER_ADDED]]
 

Revision as of 00:51, 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:
Party member added to active party using the party GUI
Sent from:
Sent to:
module
Parameters:

Usage

case EVENT_TYPE_PARTYMEMBER_ADDED:
{
object oFollower = GetEventObject(ev, 0); // [Undocumented]

// insert event-handling code here

break;
}