12.07.2014, 23:00
Si tienes GTA R.I.P no te funcionara. Igual puedes usar esto:
pawn Код:
CMD:savepos(playerid)
{
new Float:Pos[3];
new string[144];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
format(string, sizeof(string), "SetPlayerPos(playerid, %f, %f, %f);\r\n", Pos[0], Pos[1], Pos[2]);
new File:INI = fopen("Posiciones.txt", io_append);
fwrite(INI, string);
fclose(INI);
return 1;
}