27.10.2010, 13:40
pawn Код:
if(strcmp(cmd, "/poz", true) == 0)
{
new string1[128];
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid,X,Y,Z);
format(string1,sizeof(string1),"Pozicija = X: %.0f , Y: %.0f , Z: %.0f",X,Y,Z);
SendClientMessage(playerid,COLOR_GREEN,string1);
return 1;
}

