Difference between revisions of "FOLLOWER STATE *"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (1 revision: Importing auto-generated constant article)
m (Suppressing blank lines)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Generated}}
 
 
{{Constant table start
 
{{Constant table start
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
Line 8: 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 16: 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 24: 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 40: 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 48: 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 56: 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 63: 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 ==
 +
<!-- This section contains links to articles, functions or constant groups. -->
  
<!-- == See also == -->
+
*[[SetFollowerState]]
<!-- This section contains links to articles, functions or constant groups. -->
+
*[[GetFollowerState]]
 +
*[[WR_SetFollowerState]]
  
[[Category:FOLLOWER_STATE* constants]]
+
[[Category: Party and group control]]
 +
[[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