GetPlayerFollowers - Game

Member of: Game Script

Returns an array of the player's followers.

SyntaxEdit

Actor[] Function GetPlayerFollowers() native global

ParametersEdit

None

Return ValueEdit

Actor array containing all actors that are either:

  1. Running an AI procedure that followers the player (e.g. Follow, Range).
  2. Running a package that is flagged to treat the actor as a player-follower (e.g. a Sandbox on a player companion).

ExamplesEdit

   Actor[] playerFollowers = Game.GetPlayerFollowers( )
   int index = 0
   while (index < playerFollowers.Length)
     ;playerFollowers[index].DoSomething()
     currentElement += 1
   endWhile

See AlsoEdit