22.03.2014, 09:19
try this
pawn Код:
if(response)
{
new string2[128];
new Float:x,Float:y,Float:z;
new Text3D:label = Create3DTextLabel(inputtext, textc[playerid],x,y,z, 40.0, 0, 0);
GetPlayerPos(playerid,x,y,z);
format(string2, sizeof(string2), "%s", inputtext);
SendClientMessage(playerid,textc[playerid], string2);
Attach3DTextLabelToPlayer(label,playerid,0.0, 0.0, 0.7);
}
else
{
DeletePlayer3DTextLabel(playerid, PlayerText3D:label);
}