playersNumber: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>\[\[([a-zA-Z0-9_]+)\]\] +\[\[([a-zA-Z0-9_]+)\]\];?<\/code>" to "<sqf>$1 $2;</sqf>")
m (improved note formatting.)
 
(13 intermediate revisions by one other user not shown)
Line 24: Line 24:
|gr1= Multiplayer
|gr1= Multiplayer


|descr= Returns count of occupied role selection slots for given side. Players who claimed a slot in the lobby but did not start the mission are counted as well. If {{ic|disabledAI {{=}} 0;}} in [[Description.ext#disabledAI|description.ext]] or ''Enable AI'' option is checked in [[Eden Editor]], AI bots will be treated as valid players and will be counted too.
|descr= Returns count of occupied role selection slots for given side. Players who claimed a slot in the lobby but did not start the mission are counted as well. If <syntaxhighlight lang="cpp" inline>disabledAI = 0;</syntaxhighlight> in [[Description.ext#disabledAI|description.ext]] or ''Enable AI'' option is checked in [[:Category:Eden Editor|Eden Editor]], AI bots will be treated as valid players and will be counted too.


|mp= '''Multiplayer only''', in singleplayer it always returns 0.
|mp= '''Multiplayer only''', in singleplayer it always returns 0.
Line 34: Line 34:
|r1= [[Number]]
|r1= [[Number]]


|x1= <code>_west = [[playersNumber]] [[west]];
|x1= <sqf>_west = playersNumber west;
_east = [[playersNumber]] [[east]];
_east = playersNumber east;
_civ = [[playersNumber]] [[civilian]];
_civ = playersNumber civilian;
[[hint]] [[format]] ["West:%1 East:%2, Civ:%3", _west, _east, _civ];</code>
hint format ["West:%1 East:%2, Civ:%3", _west, _east, _civ];</sqf>


|seealso= [[playableSlotsNumber]] [[countSide]] [[allPlayers]] [[allUnits]]
|seealso= [[playableSlotsNumber]] [[countSide]] [[allPlayers]] [[allUnits]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Nelis.75733126
<dt></dt>
|timestamp= 20150413094400
<dd class="notedate">Posted on April 13, 2015 - 09:44 (UTC)</dd>
|text= '''2024-04-16 edit:'''<br>
<dt class="note">[[User:IT07|IT07]]</dt>
<sqf inline>playersNumber</sqf> returns playable AI as well as human players.<br>
<dd class="note">
By default, a unit (placed down in the editor for example) ONLY becomes playable when the creator specifically checks the relevant checkbox.<br>
{{GVI|arma1|1.05}} [[playersNumber]] returns playable AI as well as human players. It does not include non playable AI. To get the amount of players that are on the same side as the person executing the script:
<br>
In addition to the examples already given, this is how <sqf inline>playersNumber</sqf> can be used to get an array of players and playable AI on the same side as the side of the player:<br>
<sqf>playersNumber playerSide;</sqf>
<sqf>playersNumber playerSide;</sqf>
 
|game= arma1
</dl>
|version= 1.05
}}

Latest revision as of 19:30, 16 April 2024

Hover & click on the images for description

Description

Description:
Returns count of occupied role selection slots for given side. Players who claimed a slot in the lobby but did not start the mission are counted as well. If disabledAI = 0; in description.ext or Enable AI option is checked in Eden Editor, AI bots will be treated as valid players and will be counted too.
Multiplayer:
Multiplayer only, in singleplayer it always returns 0.
Groups:
Multiplayer

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:
playableSlotsNumber countSide allPlayers allUnits

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
Nelis.75733126 - c
Posted on Apr 13, 2015 - 09:44 (UTC)

2024-04-16 edit:
playersNumber returns playable AI as well as human players.
By default, a unit (placed down in the editor for example) ONLY becomes playable when the creator specifically checks the relevant checkbox.

In addition to the examples already given, this is how playersNumber can be used to get an array of players and playable AI on the same side as the side of the player:

playersNumber playerSide;