SA-MP Forums Archive
[Duda] savedpositions.txt - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [Duda] savedpositions.txt (/showthread.php?tid=277731)



[Duda] savedpositions.txt - leaNN! - 19.08.2011

Hola people!
Bueno, actualmente tengo el GTA ubicado en "D:\GTA San Andreas", y cada vez qe intento utilizar /save, me da error.
Me tira algo onda "Imposible localizar savedpositions.txt", mi pregunta es que puedo hacer para poder volver a usar /save xD.

Sistema operativo: Windows 7 Professional.
Ubicacion de gta_sa.exe: D:\GTA San Andreas
GTA SA Full o RiP? RiP.

Alguna idea? Gracias!


Re: [Duda] savedpositions.txt - ermakiloko - 19.08.2011

Si es Rip, ve a la carpeta del juego, despuйs a "Data", despuйs a "SAMP" y ahн verбs un archivo de texto llamado "savedpositions", ahн estб la cordenada de /save
PD: SI aъn no deja por el error, mueve la carpeta al escritorio y prueba.



Respuesta: [Duda] savedpositions.txt - leaNN! - 19.08.2011

Esque el archivo no existe, y me da error cuando el juego intenta crearlo D:


Re: [Duda] savedpositions.txt - ermakiloko - 19.08.2011

їDicho archivo de texto no existe? reinstala el juego, no hay otra soluciуn.


Respuesta: [Duda] savedpositions.txt - D3IMON - 19.08.2011

Ese error nunca me ha pasado lo siento,pero puedes hacer tu un comando /save https://sampwiki.blast.hk/wiki/File_Functions


Re: [Duda] savedpositions.txt - ermakiloko - 19.08.2011

Soluciуn que he encontrado, descarga esta carpeta que acabo de subir, descomprimes el .rar, sacas la carpeta y la pones en la carpeta de tu GTA ( SI te pide remplazar algo, adlo ).
Si te va avisame, sino, avisame igual xD
LINK: http://www.megaupload.com/?d=S2SWWBLJ



Respuesta: [Duda] savedpositions.txt - leaNN! - 19.08.2011

Erma, ahi estoi bajandolo!
Otro dato: Cuando saco screen, no las guarda, y siempre me dice "Screenshot saved sam-000.jpg" o como sea el texto.
Siempre es la 000, nunca sube.


Re: Respuesta: [Duda] savedpositions.txt - ermakiloko - 19.08.2011

Quote:
Originally Posted by leaNN!
Посмотреть сообщение
Erma, ahi estoi bajandolo!
Otro dato: Cuando saco screen, no las guarda, y siempre me dice "Screenshot saved sam-000.jpg" o como sea el texto.
Siempre es la 000, nunca sube.
Buff eso ya ni idea, yo siempre uso el botуn "Imp pant" para sacar SS en el juego ya que cuando uso "F8" se me congela y a tomar por culo la partida xD


Respuesta: [Duda] savedpositions.txt - leaNN! - 19.08.2011

Weps, probй con eso, reinstalй el SA:MP, y nada.
Voy a probr reinstalando GTA.


Respuesta: [Duda] savedpositions.txt - TheChaoz - 19.08.2011

pawn Код:
if(!strcmp(cmdtext, "/SaveEx", true, 7)){
    if(IsPlayerAdmin(playerid)){
        new Float:P[4], str[128], File:Fhnd;
        if(IsPlayerInAnyVehicle(playerid)){
            new tmp[2], veh;
            veh = GetPlayerVehicleID(playerid);
            GetVehiclePos(veh, P[0], P[1], P[2]);
            GetVehicleColor(veh, tmp[0], tmp[1]);
            GetVehicleZAngle(veh, P[3]);
            format(str, 128, "AddStaticVehicle(%i, %f, %f, %f, %f, %i, %i); \\\\%s", GetVehicleModel(veh), P[0], P[1], P[2], P[3], tmp[0], tmp[1], cmdtext[7]);
        }else{
            GetPlayerPos(playerid, P[0], P[1], P[2]);
            GetPlayerFacingAngle(playerid, P[3]);
            format(str, 128, "AddPlayerClass(%i, %f, %f, %f, %f, 0, 0, 0, 0, 0, 0); \\\\%s", GetPlayerSkin(playerid), P[0], P[1], P[2], P[3], cmdtext[7]);
        }
        if(fexist("savedpositions.txt")){
            Fhnd = fopen("savedpositions.txt", io_append);
            fwrite(Fhnd, str);
            fwrite(Fhnd, "\r\n");
            fclose(Fhnd);
        }
        else{
            Fhnd = fopen("savedpositions.txt", io_write);
            fwrite(Fhnd, str);
            fwrite(Fhnd, "\r\n");
            fclose(Fhnd);
        }
        PlayerPlaySound(playerid, 1057, P[0], P[1], P[2]);
        return SendClientMessage(playerid, 0x00FF00FF, "Posicion guardada exitosamente.");
    }
}