If statement conditional on number of players on server

Hey folks, I am working on an idea that needs more than a certain number of players on the server before it would trigger. I cannot find the varibale to use though. I am thinking of somehint like this

Code:
if #ofplayers >= "10" then goto blah else goto end:
 
Could one of ya'll give me a hand with this expression please?
 
Code:
_playerCount = playersNumber west;
if (_playerCount >= 10) then {
...
} else {
...
};

or

Code:
_playerCount = count playableUnits;
if (_playerCount >= 10) then {
...
} else {
...
};
 
Back
Top