12.01.2017, 19:43
You'll want a format-style function: https://github.com/Southclaws/Scaven....pwn#L202-L214
pawn Код:
new
Float:x,
Float:y,
Float:z,
message[128]; // a string to store the message in
GetPlayerPos(playerid, x, y, z);
format(message, sizeof(message), "%f, %f, %f", x, y, z); // look up "format specifiers" for Pawn/C
SendClientMessage(playerid, COLOR_RED, message);