Difference between revisions of "FOLLOWER STATE *"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (Suppressing blank lines)
 
(4 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
|type=int
 
|type=int
 
|value=1
 
|value=1
|description=  
+
|description= Add follower to party pool + active party
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 15: Line 15:
 
|type=int
 
|type=int
 
|value=2
 
|value=2
|description=  
+
|description= Add follower to party pool and remove from active party
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 23: Line 23:
 
|type=int
 
|type=int
 
|value=0
 
|value=0
|description=  
+
|description= Remove follower from party pool and active party
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 39: Line 39:
 
|type=int
 
|type=int
 
|value=7
 
|value=7
|description=  
+
|description= Add follower to active party and lock him active in the party picker.
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 47: Line 47:
 
|type=int
 
|type=int
 
|value=5
 
|value=5
|description=  
+
|description= Remove follower from active party and store it for putting it back later into the party
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 55: Line 55:
 
|type=int
 
|type=int
 
|value=3
 
|value=3
|description=  
+
|description= Remove follower from active party and do not allow adding it to active party again
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
 
|sourcemodule=
 
|sourcemodule=
Line 62: Line 62:
 
<!-- == Remarks == -->
 
<!-- == Remarks == -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
 
<!-- == Examples == -->
 
<!-- == Examples == -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
+
== See also ==
<!-- == See also == -->
+
 
<!-- This section contains links to articles, functions or constant groups. -->
 
<!-- This section contains links to articles, functions or constant groups. -->
  
 
*[[SetFollowerState]]
 
*[[SetFollowerState]]
 
*[[GetFollowerState]]
 
*[[GetFollowerState]]
 +
*[[WR_SetFollowerState]]
  
 
[[Category: Party and group control]]
 
[[Category: Party and group control]]
 
[[Category:Constants]]
 
[[Category:Constants]]

Latest revision as of 11:52, 26 October 2014

Source: script.ldf
Constant name Type Value Description Source
FOLLOWER_STATE_ACTIVE int 1 Add follower to party pool + active party script.ldf
FOLLOWER_STATE_AVAILABLE int 2 Add follower to party pool and remove from active party script.ldf
FOLLOWER_STATE_INVALID int 0 Remove follower from party pool and active party script.ldf
FOLLOWER_STATE_LOADING int 6 script.ldf
FOLLOWER_STATE_LOCKEDACTIVE int 7 Add follower to active party and lock him active in the party picker. script.ldf
FOLLOWER_STATE_SUSPENDED int 5 Remove follower from active party and store it for putting it back later into the party script.ldf
FOLLOWER_STATE_UNAVAILABLE int 3 Remove follower from active party and do not allow adding it to active party again script.ldf

See also