20.09.2013, 02:02
Nгo testei mas acho que isso funciona:
pawn Код:
new
Text3D: corey;
new Texto[ 20 ];
new Float:P[3];
CMD:texto3d(playerid, params[])
{
if(sscanf ( params,"s[20]", Texto))
return SendClientMessage(playerid, -1,"Uso: /texto3d mensagem");
GetPlayerPos(playerid, P[0], P[1], P[2]);
corey = Create3DTextLabel(Texto, 0xFFFFFFFF, P[0], P[1], P[2], 100.0, 0);
Update3DTextLabelText(corey, 0xFFFFFFFF, Texto);
return 1;
}