String.
#1

What's better, or just what's the best way and why should i choose this way. Is there any differences, or i just have to take care of number of cells ?

Код:
new globalstring[ 1024 ];
Код:
format(globalstring, sizeof(globalstring), "Hello %s, Welcome to SA:MP", playername);
Код:
new string[ 80 ];
Код:
format(string, sizeof(string), "Hello %s, Welcome to SA:MP", playername);
Код:
new string[ 25 + MAX_PLAYER_NAME ];
Код:
format(string, sizeof(string), "Hello %s, Welcome to SA:MP", playername);
Reply


Messages In This Thread
String. - by Hunud - 12.03.2018, 08:28
Re: String. - by Meller - 12.03.2018, 10:28
Re: String. - by ISmokezU - 12.03.2018, 11:46

Forum Jump:


Users browsing this thread: 1 Guest(s)