warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetPlayer3DTextLabelVirtualWorld
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 virtual world id.
Name | Description |
---|---|
playerid | The ID of the player. |
PlayerText3D:textid | The ID of the player's 3D text label to get the virtual world id of. |
Returns
Returns the virtual world id of the player's 3D text label.
Examples
new PlayerText3D:playerTextId;
new Float:X, Float:Y, Float:Z;
new worldid;
GetPlayerPos(playerid, X, Y, Z);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, X, Y, Z, 40.0);
worldid = GetPlayer3DTextLabelVirtualWorld(playerid, playerTextId);
Notes
warning
There is no virtual world support for player 3D text labels. This function just returns the player's virtual world!
Related Functions
- Get3DTextLabelVirtualWorld: Gets the 3D text label virtual world id.