Difference between revisions of "GetPlayerFollowers - Game"
Jump to navigation
Jump to search
imported>Deazurain m (→Return Value: added array link) |
(No difference)
|
Revision as of 10:35, 31 July 2013
Member of: Game Script
Returns an array of the player's followers.
Syntax
Actor[] Function GetPlayerFollowers() native global
Parameters
None
Return Value
Actor array containing all actors that are either:
- Running an AI procedure that followers the player (e.g. Follow, Range).
- Running a package that is flagged to treat the actor as a player-follower (e.g. a Sandbox on a player companion).
Examples
Actor[] playerFollowers = Game.GetPlayerFollowers( )
int index = 0
while (index < objects.Length)
;playerFollowers[index].DoSomething()
currentElement += 1
endWhile