Background for Fallout 4
Member of the Game script
Actor[]functionGetPlayerFollowers()NativeGlobal

Description

Wiki Description

Returns an array of the player's followers.

Documentation Comment

Returns a list of actors that are following the player (including both those running
a Follow procedure and those flagged by their package to be treated as followers).


Caveats


Examples

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

Auto-Generated Example

Actor[] returnedValue = Game.GetPlayerFollowers()

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.