02.08.2009, 14:36
pawn Код:
if (strcmp("/pos", cmdtext, true, 10) == 0)
{
new Float:X;
new Float:Y;
new Float:Z;
new string[128];
format(string, sizeof(string), "You're current position is %f %f %f", Float:X, Float:Y, Float:Z);
SendClientMessage(playerid, color ,string); // change "color" to the color you want
return 1;
}