Przejdź do głównej zawartości

ShowNameTags

Description

Toggle the drawing of nametags, health bars and armor bars above players.

NameDescription
bool:show'false' to disable, 'true' to enable (enabled by default).

Returns

This function does not return any specific values.

Examples

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

Notes

warning

This function can only be used in OnGameModeInit. For other times, see ShowPlayerNameTagForPlayer.

wskazówka

You can also toggle player nametags via config.json

"use_nametags": false,