09.08.2014, 20:01
The syntax is wrong:
You are creating the label at X=40, Y=0 and Z=0.
Here's how you gotta do it:
https://sampwiki.blast.hk/wiki/CreatePlayer3DTextLabel
pawn Код:
(playerid, text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, attachedplayer, attachedvehicle, testLOS)
Here's how you gotta do it:
pawn Код:
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
CreatePlayer3DTextLabel(playerid,"Yes\nI'm VIP",0xFFFF00FF,X,Y,Z,40.0,playerid,INVALID_VEHICLE_ID,0);