17.07.2013, 14:18
i use ZCMD
pawn Код:
CMD:pos(playerid, params[])
{
new Float:Pos[3];
new string[128];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
format(string,sizeof(string),"X: %f Y: %f Z: %f", Pos[0], Pos[1], Pos[2]);
SendClientMessage(playerid, -1, string);
}