27.02.2013, 22:28
Use format!
%s is a string, this is a combination of characters and numbers.
The first %s turns into whatever "user" is defined to, and the second %s turns into the message inputted.
pawn Код:
new string [ 128 ];
format( string, sizeof ( string ), "(ADMIN) %s says %s", user, message );
SendClientMessageToAll ( -1, string );
The first %s turns into whatever "user" is defined to, and the second %s turns into the message inputted.

