16.09.2012, 17:19
pawn Код:
if(!strcmp(cmdtext, "/comando", true))
{
new Float[4];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
GetPlayerAngle(playerid, Pos[3]);
new string[50];
format(string, 50, "Tus coordenadas, X: %f Y: %f Z: %f Angulo: %f", Pos[0], Pos[1], Pos[2], Pos[3]);
SendClientMessage(playerid, -1, string);
return 1;
}