05.07.2013, 09:30
Simply stated, I just want to use this command in-game to tell me my coords, but I'm not sure how to display the coords exactly:
I saw the script somewhere on a ****** search and couldn't find it again. It would be useful for my mapping.
pawn Код:
if(strcmp(cmdtext,"/GPS",true) == 0)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid,X,Y,Z);
SendClientMessage(playerid, 0xFFEE00, "You are at X Y Z.");
return 1;
}