14.09.2011, 05:04
tem como criar uma 3dtextlabel em cima de um jogador??
se tiver poderia me dizer como??
se tiver poderia me dizer como??
new
Text3D:jogador,
Float:X,
Float:Y,
Float:Z;
GetPlayerPos(playerid,X,Y,Z);
jogador = Create3DTextLabel("Texto emcima do jogador", -1,X,Y,Z,30.0,0);
Attach3DTextLabelToPlayer(Text3D:jogador,playerid,0.0,0.0,4.0);
new Text3D:label[MAX_PLAYERS];
label[playerid] = Create3DTextLabel("Olб, yo soy emito", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7)
public OnPlayerDisconnect(playerid, reason)
{
Delete3DTextLabel(label[playerid]);
return 1;
}