Posts: 381
Threads: 86
Joined: Mar 2012
Reputation:
0
Buenas me cambie de pc y al guardar una posiciуn en juego con /SAVE NOMBRE no se me crea el .txt de las posiciones guardadas en Gta user files xd alguien me podrнa decir donde o como hago para guardar posiciones sin esa opcion :c
Posts: 2,041
Threads: 97
Joined: Jun 2013
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;
}