16.09.2012, 17:36
pawn Код:
CMD:vc(playerid, params[])//Lнnea 31167
{
new Float:Pos[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]);
SendClientMessageEx(playerid, -1, string);
return 1;
}//Lнnea 31176