Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Excerpt

Returns an array of players objects for living players.

 

Syntax

Code Block
themeRDark
languagejavascript
linenumberstrue
var living = Players.alive; // array of living players objects

Return value

An array of living Players Objects, including Scavengers (if applicable), excluding spectators and vacant slots.

Notes

The indexes in the array are sequential and not based on player IDs.

Uses caching to boost performance. The cache is automatically invalidated every game tick. See Cache API for details.

Example

Code Block
themeRDark
languagejavascript
titleIterating through living players
linenumberstrue
Players.alive.forEach(function(player) {
  // player = players object for current living player
  // player.id = id of living player
});
Code Block
themeRDark
languagejavascript
titleCheck if specific player is dead
linenumberstrue
// .isAlive filters out spectators and vacant slots
var isLiving = Players[playerID].isAlive;
 

 

 

Div
classbox
Availability
Status
colourGreen
titleStable

Requires:

Div
classbox
Contents

Jump to:

Table of Contents
maxLevel5

Div
classbox

See also

Related articles:

Div
classbox

Players API

Topics:

Child pages (Children Display)
alltrue
depthall
pagePlayers API
excerpttrue