17.08.2009, 11:08
Quote:
|
Originally Posted by Programie
You mean something like this?
![]() Код:
new string[256]; new Float:health; GetPlayerHealth(playerid,health); format(string,sizeof(string),"Your health: %f",health); SendClientMessage(playerid,COLOR_YELLOW,string); |
He needs string with MAXIMUM 25 cells and you would sell him string with 256

pawn Код:
new string[25];
new Float:health;
GetPlayerHealth(playerid,health);
format(string,sizeof(string),"Your health: %f",health);
SendClientMessage(playerid,COLOR_YELLOW,string);


