Create3DTextLabel

From SA-MP Wiki

Revision as of 10:57, 20 September 2009; view current revision
←Older revision | Newer revision→
Jump to: navigation, search

Create3DTextLabel


Warning: This is a new function working since SA-MP 0.3. It won't work in previous versions.


Creates a 3D Text Label at a specific location in the world

.

Parameters:
(text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, virtualworld, testLOS)
text[]The initial text string.
colorThe text Color
xX-Coordinate
yY-Coordinate
zZ-Coordinate
DrawDistanceThe distance from where you are able to see the 3D Text Label
VirtualWorldThe virtual world in which you are able to see the 3D Text
testLOS0/1 Test the line-of-sight so this text can't be seen through objects


ReturnsThe ID of the newly created 3D Text Label


Example:

public OnGameModeInit()
{
    Create3DTextLabel("I'm at the coordinates:\n30.0,40.0,50.0",0x008080FF,30.0,40.0,50.0,40.0,0);
    return 1;
}

Related Functions

The following functions might be useful as well, as they're related to this function in one way or another.