Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Excerpt |
---|
Returns an array of players objects for dead players. |
Syntax
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
var defeated = Players.dead; // array of defeated players objects |
Return value
An array of defeated Players Objects, excluding spectators and vacant slots.
Notes
The indexes in the array are sequential and not based on player IDs.
Example
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Players.dead.forEach(function(corpse) { // corpse = players object for current dead player // corpse.id = id of dead player }); |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
// quick check - doesn't check if they are a spectator or vacant slot var isDead = !Players[playerID].isAlive; |
Div | ||||||
---|---|---|---|---|---|---|
| ||||||
Availability
Requires:
|
Div | ||||
---|---|---|---|---|
| ||||
ContentsJump to:
|
Div | ||
---|---|---|
| ||
See alsoRelated articles:
|
Div | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
Players APITopics:
|