Difference between revisions of "Osiris/API/CharacterIsPlayer"

From Divinity Engine Wiki
Jump to: navigation, search
m
(Fixed CharacterFollowCharacter/CharacterAddToPlayerCharacter mixup)
Line 7: Line 7:
 
* '''_Bool''': '''1''' if '''_Character''' is ''player-controlled'', '''0''' if not.
 
* '''_Bool''': '''1''' if '''_Character''' is ''player-controlled'', '''0''' if not.
 
===== Notes =====
 
===== Notes =====
* Apart from avatars and recruited companions, ''player-controlled'' characters also include summons and followers.
+
* Apart from avatars and recruited companions, ''player-controlled'' characters also include summons and [[Osiris/API/CharacterAddToCharacter|party-followers]]. They do ''not'' inlcude [[Osiris/API/CharacterFollowCharacter|regular followers]].
 
===== See Also =====
 
===== See Also =====
 +
* [[Osiris/API/CharacterAddToCharacter|CharacterAddToCharacter]]
 
* [[Osiris/API/CharacterIsPartyFollower|CharacterIsPartyFollower]]
 
* [[Osiris/API/CharacterIsPartyFollower|CharacterIsPartyFollower]]
 
* [[Osiris/API/CharacterIsSummon|CharacterIsSummon]]
 
* [[Osiris/API/CharacterIsSummon|CharacterIsSummon]]
* [[Osiris/API/CharacterFollowCharacter|CharacterFollowCharacter]]
 
 
   
 
   
 
[[Category:Osiris Queries]]
 
[[Category:Osiris Queries]]

Revision as of 22:11, 28 November 2017

Full Definition(s)
  • query CharacterIsPlayer([in](CHARACTERGUID)_Character, [out](INTEGER)_Bool)
Description

Returns whether _Character is player-controlled.

Return Values
  • Success/Failure: Fails if _Character does not exist.
  • _Bool: 1 if _Character is player-controlled, 0 if not.
Notes
See Also