24.09.2010, 11:05
pawn Код:
UpdatePlayer3DTextLabelText(playerid, playertextid, 0xFFFFFFFF, "");
pawn Код:
UpdatePlayer3DTextLabelText(playerid, playertextid, 0xFFFFFFFF, "Hello World!");
EDIT: what you need to do is:
pawn Код:
new Player3DText:Text[MAX_PLAYERS];
CreatePlayer3DLabel(...
//and than with
format(string,sizeof(string),"%s says: %s",Playername,text);
UpdatePlayer3DTextLabelText(playerid, Text[playerid], 0xFFFFFFFF,string);