19.06.2013, 22:37
You should use format at the end.
Example:
Example:
pawn Код:
new str[128], Name[24], string[128];
GetPlayerName( playerid, Name, sizeof Name);
strcat( str, "Your name is %s");
format( string, sizeof string, str, Name);
SendClientMessage( playerid, 0xFF0000FF, string);