get_players_ex | amxmisc | AMX X Documentation

Инклуды

    1. Стоки
    1. Нативы
    2. Форварды
    1. Нативы
    2. Стоки
    1. Нативы
    2. Стоки
    1. Нативы
    1. Нативы
    2. Стоки
    1. Нативы
    1. Нативы
    2. Форварды
    3. Стоки
    1. Нативы
    2. Форварды
    1. Нативы
    1. Нативы
    1. Нативы
    2. Стоки
    1. Нативы
    2. Форварды
    1. Нативы
    1. Нативы
    2. Форварды
    1. Нативы
    2. Форварды
    1. Стоки
    1. Нативы
    1. Нативы
    2. Стоки
    1. Стоки
    1. Стоки
    1. Нативы
    1. Нативы
    2. Форварды
    3. Стоки
    1. Нативы
    1. Нативы
    1. Нативы
    1. Нативы
    2. Стоки
    1. Нативы
    1. Нативы
    1. Стоки
    1. Нативы
    1. Нативы
    1. Нативы
    2. Форварды
    1. Нативы
    1. Нативы
    1. Нативы
    2. Форварды
    1. Нативы
    1. Нативы
    1. Нативы
    1. Нативы
    1. Нативы
    2. Форварды
    1. Нативы
    2. Стоки
    1. Нативы
    1. Нативы
    1. Нативы
    2. Стоки
    1. Нативы
    2. Стоки
    1. Стоки
    1. Нативы
    1. Нативы
    1. Нативы
    1. Нативы
    2. Форварды
    3. Стоки
    1. Стоки
    1. Нативы
    2. Форварды
    3. Стоки
    1. Нативы
    1. Нативы
    2. Форварды
    3. Стоки
    1. Нативы
    1. Нативы
    2. Стоки
    1. Стоки

get_players_ex

Синтаксис
									stock get_players_ex(players[MAX_PLAYERS] = {}, &num, GetPlayersFlags:flags = GetPlayers_None, const team[] = "")
									{
     new strFlags[10];
     get_flags(_:flags, strFlags, charsmax(strFlags));
     get_players(players, num, strFlags, team);
}
								
Переменная Описание
players
Array to store indexes to
num
Variable to store number of indexes to
flags
Optional filtering flags (enum GetPlayersFlags); valid flags are:
  GetPlayers_None - No filter (Default)
  GetPlayers_ExcludeDead - do not include dead clients
  GetPlayers_ExcludeAlive - do not include alive clients
  GetPlayers_ExcludeBots - do not include bots
  GetPlayers_ExcludeHuman - do not include human clients
  GetPlayers_MatchTeam - match with team
  GetPlayers_MatchNameSubstring - match with part of name
  GetPlayers_CaseInsensitive - match case insensitive
  GetPlayers_ExcludeHLTV - do not include HLTV proxies
  GetPlayers_IncludeConnecting - include connecting clients
team
String to match against if the "e" or "f" flag is specified

Описание
Stores a filtered list of client indexes to an array.

Пометка
Example retrieving all alive CTs:
get_players_ex(players, num, GetPlayers_ExcludeDead | GetPlayers_MatchTeam, "CT")

Возвращает
Функция ничего не возвращает
Сверху Снизу