12.07.2009, 11:03
Try typing the "/save [optional: comment]" command and looking in your GTA San Andreas folder for 'savedpositions.txt'.
Or try this:
It is more precise and more annoying
Or try this:
pawn Код:
public OnPlayerUpdate(playerid)
{
new
Float:px,
Float:py,
Float:pz,
string[128];
GetPlayerPos(playerid, px, py, pz);
format(string, sizeof(string), "%f, %f, %f", px, py, pz);
SendClientMessage(playerid, 0xAFAFAFAA, string);
return 1;
}

