Difference between revisions of "EVENT TYPE PARTYMEMBER DROPPED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (remove redundant category)
 
Line 10: Line 10:
 
|object0desc={{undocumented}}
 
|object0desc={{undocumented}}
 
}}
 
}}
 
[[Category:Event types|PARTYMEMBER_DROPPED]]
 
[[Category:Module events|PARTYMEMBER_DROPPED]]
 

Latest 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 removed from active party using the party GUI
Sent from:
Sent to:
module
Parameters:

Usage

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

// insert event-handling code here

break;
}