06.01.2010, 14:41
It appears without ID but if i use ID then it wont appear.
Code :
And my update command:
Code :
pawn Код:
new Text3D:Alahambra;
OnGameModeInit()
Alahambra = Create3DTextLabel("Alahambra",0x008080FF, 1836.7153,-1682.4954,13.3364,40.0,0);
pawn Код:
CMD:change(playerid, params[])
{
new text;
if (sscanf(params, "i", text)) return SendClientMessage(playerid, LIGHTGREEN, "USaGE: /chagne [text]");
new string[128];
format(string, sizeof(string), "%s", text);
Update3DTextLabelText(Alahambra, COLOR_GRAD2, string);
return 1;
}