05.07.2013, 09:33
You can use the function format() to format a string and display it together with variables.
pawn Код:
new string[64];
format(string, sizeof(string), "You are at %0.f %0.f %0.f.", X, Y, Z);
SendClientMessage(playerid, 0xFFEE00, string);