Skip to main content

IsValidPlayer3DTextLabel

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description​

Checks if a player's 3D text label is valid.

NameDescription
playeridThe ID of the player.
PlayerText3D:textidThe ID of the player's 3D text label to check.

Returns​

This function returns true if the player's 3D text label is valid, or false if it is not.

Examples​

new PlayerText3D:playerTextId;
new Float:X, Float:Y, Float:Z;

GetPlayerPos(playerid, X, Y, Z);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, X, Y, Z, 40.0);

if (IsValidPlayer3DTextLabel(playerid, playerTextId))
{
// Do something
}