03.04.2013, 18:59
Es muy facнl, usted puede utilizar el comando cliente "/save" y luego busque en "Mis documentos" la carpeta de SA-MP.
Un saludo.
pawn Код:
CMD:miposicion(playerid, params[])
{
new Float:Pos[4], String[128];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
GetPlayerFacingAngle(playerid, Pos[3]);
format(String, sizeof(String), "Tu posiciуn es: X: %f, Y: %f, Z: %f, A: %f", Pos[0], Pos[1], Pos[2], Pos[3]);
SenClientMessage(playerid, -1, String);
printf("%s", String);
return 1;
}