25.05.2012, 07:45
SendClientMessage does not accept all of those additional parameters and cannot be used to format a string, you need to use a function such as format for that, for example:
pawn Код:
new string[128];
format(string, sizeof(string), "Target Coordinates X - %f | Y - %f | Z - %f", poscord[0], poscord[1], poscord[2]);
SendClientMessage(playerid, COLOR_GRAD4, string);