12.03.2018, 08:28
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);