Need (HelP) and please Reply -
KennJie - 27.05.2014
Anyone can help me to solve my problem, because i cant see my savedpositions by do a /save and taking ss by press f8 anyone can help
Re: Need (HelP) and please Reply -
Josh_Main - 27.05.2014
You can find your saved positions in your san andreas directory ((Default Path: C:\Program Files\Rockstar Games\GTA San Andreas)), press the compatibility button, then open the savedpositions.txt file
Re: Need (HelP) and please Reply -
KennJie - 27.05.2014
but i cant see
Re: Need (HelP) and please Reply -
Dignity - 27.05.2014
Quote:
Originally Posted by Josh_Main
You can find your saved positions in your san andreas directory ((Default Path: C:\Program Files\Rockstar Games\GTA San Andreas)), press the compatibility button, then open the savedpositions.txt file
|
No, it saves in your userfiles located in your documents.
C:\Users\name\Documents\GTA San Andreas User Files\SAMP
Re: Need (HelP) and please Reply -
Rittik - 27.05.2014
C:\Users\name\Documents\GTA San Andreas User Files\SAMP\savedpositions.txt
Re: Need (HelP) and please Reply -
Threshold - 27.05.2014
There are several places that it can save to.
"C:\Users\%USERNAME%\Documents\GTA San Andreas User Files\SAMP\savedpositions.txt"
"C:\Users\%USERNAME%\AppData\Local\VirtualStore\Pr ogram Files\Rockstar Games\GTA San Andreas\data\SAMP\savedpositions.txt"
or
"C:\Program Files\Rockstar Games\GTA San Andreas\data\SAMP\savedpositions.txt"
Re: Need (HelP) and please Reply -
Jack_Leslie - 27.05.2014
Try un-installing GTA San Andreas and SA-MP, then re-installing both. For some reason my SA-MP doesn't save any positions or screenshots in my documents either, so I just created a code in my script to save the positions in the scriptfile.
Here's the command I made if you want to use it:
pawn Code:
CMD:saveposition(playerid, params[])
{
new string[128];
new Float: x, Float: y, Float: z, Float:a, interior;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, a);
interior = GetPlayerInterior(playerid);
format(string, sizeof(string), "\r\r %f, %f, %f, %f, %d - %s", x, y, z, a, interior, params);
new File:positions = fopen("savedpositions.txt", io_append);
fwrite(positions, string);
fclose(positions);
return 1;
}
Create savedpositions.txt in your 'scriptfiles' and it'll save there.