ShowNameTags

ShowNameTags

Description:
Function ShowNameTags toggle the drawing of nametags, health bars and armor bars above players.
This function can only be used in OnGameModeInit. For other times, see ShowPlayerNameTagForPlayer.


Parameters:
(enabled)
bool enabled 0 to disable, 1 to enable (enabled by default).


Return Values:
This function does not return any specific values.


Examples:
public OnGameModeInit()
{
    // This will fully disable all player nametags
    // (including health and armour bars)
    ShowNameTags(0);
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.