/**
* Checks if players in given team can take AWP.
*
* @param iTeam Team index
*
* @return True if players in given team can take AWP, false otherwise.
*/
native bool:awpl_is_team_can_take_awp(TeamName:iTeam);
/**
* Checks if a given player can take an AWP.
*
* @param id Player index
* @param iReason The optional variable to store the reason if player can't take AWP.
* Look at the enum RESTRICTION_TYPE
*
* @return True if player can take AWP, false otherwise.
*/
native bool:awpl_is_player_can_take_awp(id, &AwpRestrictionType:iReason = AWP_ALLOWED);