Difference between revisions of "EVENT TYPE PARTYMEMBER ADDED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m
m
Line 9: Line 9:
 
|object0name=oFollower
 
|object0name=oFollower
 
|object0desc={{undocumented}}
 
|object0desc={{undocumented}}
|creatorname=oModule
+
|creatordesc=Module
 
}}
 
}}

Revision as of 20:04, 20 August 2009

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;
}