Need (HelP) and please Reply
#1

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
Reply
#2

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
Reply
#3

but i cant see
Reply
#4

Quote:
Originally Posted by Josh_Main
View Post
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
Reply
#5

C:\Users\name\Documents\GTA San Andreas User Files\SAMP\savedpositions.txt
Reply
#6

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"
Reply
#7

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.
Reply


Forum Jump:


Users browsing this thread: 5 Guest(s)