note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetPlayer3DTextLabelPos
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 position.
Name | Description |
---|---|
playerid | The ID of the player. |
PlayerText3D:textid | The ID of the player's 3D text label to get the position of. |
&Float:x | An float variable into which to store the X coordinate, passed by reference. |
&Float:y | An float variable into which to store the Y coordinate, passed by reference. |
&Float:z | An float variable into which to store the Z coordinate, passed by reference. |
Examples
new PlayerText3D:playerTextId;
new Float:playerX, Float:playerY, Float:playerZ;
GetPlayerPos(playerid, playerX, playerY, playerZ);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, playerX, playerY, playerZ, 40.0);
new Float:x, Float:y, Float:z;
GetPlayer3DTextLabelPos(playerid, playerTextId, x, y, z);
Related Functions
- Get3DTextLabelPos: Gets the 3D text label position.