05.07.2013, 09:42
if that doesn't work, try using this :
Код:
if(strcmp(cmdtext,"/GPS",true) == 0)
{
new Float:X, Float:Y, Float:Z;
new string[64];
GetPlayerPos(playerid,X,Y,Z);
format(string, sizeof(string), "You are at %f %f %f.", X, Y, Z);
SendClientMessage(playerid, 0xFFEE00, string);
return 1;
}
