08.07.2014, 10:34
pawn Код:
#include <zcmd> //Sorry, I just don't feel like using anything else :<
CMD:saveloc(playerid, params[])
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
new string[128];
format(string, sizeof(string), "Your current positions are: X = %d Y = %d Z = %d", X, Y, Z);
SendClientMessage(playerid, 0xFF0000FF, string);
return 1;
}

