Difference between revisions of "UT FireFollower"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{dafunction |name = UT_FireFollower |brief = Removes a non-plot follower from the active party, sending him back to the party pool |param1type = object |param1name = oFollower |...')
 
Line 23: Line 23:
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
  
Removes a follower from the active party, sending him back to the party pool. This function will do nothing for plot followers.
+
Removes a follower from the active party, sending him back to the party pool. This function will do nothing for plot followers, which are creatures with one of the tags defined by GEN_FL_ALISTAIR, GEN_FL_DOG, GEN_FL_MORRIGAN, GEN_FL_WYNNE, GEN_FL_SHALE, GEN_FL_STEN, GEN_FL_ZEVRAN, GEN_FL_OGHREN, GEN_FL_LELIANA or GEN_FL_LOGHAIN.
 
+
 
<!-- == Remarks == -->
 
<!-- == Remarks == -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->

Revision as of 21:59, 10 February 2010

Removes a non-plot follower from the active party, sending him back to the party pool

void UT_FireFollower(
object oFollower,
int bRemoveFromPool = FALSE,
int bRemoveEquipment = TRUE
);
Parameters:
oFollower
The creature leaving the party
bRemoveFromPool
Remove or not from the party pool
bRemoveEquipment
[Undocumented]
Returns:

Nothing.

Source:

Core Resources.utility_h

Description

Removes a follower from the active party, sending him back to the party pool. This function will do nothing for plot followers, which are creatures with one of the tags defined by GEN_FL_ALISTAIR, GEN_FL_DOG, GEN_FL_MORRIGAN, GEN_FL_WYNNE, GEN_FL_SHALE, GEN_FL_STEN, GEN_FL_ZEVRAN, GEN_FL_OGHREN, GEN_FL_LELIANA or GEN_FL_LOGHAIN.


See also

UT_HireFollower