Quote:
|
Originally Posted by SubStream
is this documentation about the new flags already up somewhere? or can you post where/how to use the flags & which flags = what
|
Here's the documentation for the function:
http://www.amxmodx.org/funcwiki.php?go=func&id=174
Here's an example to grab all players except bots and HLTV slots:
Code:
new players[32], playerCnt;
get_players(players, playerCnt, "ch");
Here's an example that is the same as the one above but won't grab dead players either:
Code:
new players[32], playerCnt;
get_players(players, playerCnt, "ach");