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.
GetPlayer3DTextLabelAttachedData
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 attached data.
Name | Description |
---|---|
playerid | The ID of the player. |
PlayerText3D:textid | The ID of the player's 3D text label to get the attached data of. |
&parentPlayerid | A variable into which to store the parentPlayerid, passed by reference. |
&parentVehicleid | A variable into which to store the parentVehicleid, passed by reference. |
Examples
An example for parentPlayerid:
new PlayerText3D:playerTextId;
new Float:X, Float:Y, Float:Z;
new attachedplayer = 37; // Attach to player id 37
new parentPlayerid;
new parentVehicleid;
GetPlayerPos(playerid, X, Y, Z);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, X, Y, Z, 40.0, attachedplayer, INVALID_VEHICLE_ID);
GetPlayer3DTextLabelAttachedData(playerid, playerTextId, parentPlayerid, parentVehicleid);
// The `parentPlayerid` will be '37'
An example for parentVehicleid:
new PlayerText3D:gVehicle3dText[MAX_VEHICLES];
new gVehicleId;
new parentPlayerid;
new parentVehicleid;
gVehicleId = CreateVehicle(510, 0.0, 0.0, 15.0, 5, 0, 120);
gVehicle3dText[gVehicleId] = CreatePlayer3DTextLabel(playerid, "Example Text", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, INVALID_PLAYER_ID, gVehicleId);
GetPlayer3DTextLabelAttachedData(playerid, gVehicle3dText[gVehicleId], parentPlayerid, parentVehicleid);
// The `parentVehicleid` will be the value of 'gVehicleId'
Related Functions
- Get3DTextLabelAttachedData: Gets the 3D text label attached data.