Skip to main content

GetPlayer3DTextLabelDrawDistance

warning

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

Description​

Gets the player's 3D text label draw distance.

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

Returns​

Returns the draw distance of the player's 3D text label as float.

Examples​

new PlayerText3D:playerTextId;
new Float:x, Float:y, Float:z;
new Float:drawDistance;

GetPlayerPos(playerid, x, y, z);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, x, y, z, 40.0);

drawDistance = GetPlayer3DTextLabelDrawDistance(playerid, playerTextId);
// drawDistance = 40.0