playersNumber: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(see also)
Line 12: Line 12:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Number]] <nowiki>=</nowiki>  '''playersNumber''' side |= Syntax
| '''playersNumber''' side |= Syntax


|p1= side: [[Side]] |= Parameter 1
|p1= side: [[Side]] |= Parameter 1
Line 27: Line 27:
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[countSide]] |= See also


}}
}}

Revision as of 19:32, 13 June 2015

Hover & click on the images for description

Description

Description:
Return count of players playing on given side. Works only in multiplayer, in singleplayer always returns 0. Returns number of playable slots taken by a side, not actual number of players of the side present in the mission. As a result, players who claimed a slot in the lobby but didn't start the mission yet are counted in as well.
Groups:
Uncategorised

Syntax

Syntax:
playersNumber side
Parameters:
side: Side
Return Value:
Number

Examples

Example 1:
_west = playersNumber west;
_east = playersNumber east;
_civ = playersNumber civilian;
hint format [ "West:%1 East:%2, Civ:%3", _west, _east, _civ];

Additional Information

See also:
countSide

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

playersNumber returns playable AI as well as human players. It does not include non playable AI. [NOTE: This was observed in ArmA 1.05]

Bottom Section

Posted on April 13, 2015 - 09:44 (UTC)
IT07
To get the amount of players that are on the same side as the person executing the script: playersNumber playerSide;