Difference between revisions of "EVENT TYPE PARTYMEMBER DROPPED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(split out of event)
 
m (remove redundant category)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
+
{{needs review}}
*<b>Sent When:</b> Party member removed from active party using the party GUI  
+
{{event
*<b>Sent From:</b>
+
|sourcefile=script.ldf
*<b>Sent To:</b> module
+
|when=Party member removed from active party using the party GUI  
 
+
|from=
Parameters:
+
|to=[[module]]
 
+
|tocategory1=module
[[Category:Event types|PARTYMEMBER_DROPPED]]
+
|sortkey=PARTYMEMBER_DROPPED
 +
|object0name=oFollower
 +
|object0desc={{undocumented}}
 +
}}

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