savedpositions.txt not there.
#1

Yes, I've ******d around and none of it helps me.

I'm on a windows 8 laptop and the savedpositions.txt file is nowhere, I've had no problems on my computer with windows 7 since 2009.

I'm running both sa-mp and gta as administrator.

I hope someone is able to help.

Thanks in advance.
Reply
#2

Go in game and type /save test.
Go to my documents/gta/samp/savepositions.txt
Reply
#3

I know where it is supposed to be, but it never appears, no matter how many times I try to save it.
Reply
#4

For those experiencing the same problem, here's a small code that will help you in the future. (You need ZCMD)

Код:
CMD:savepos(playerid, params[])
{
	new Float:x, Float:y, Float:z, Float:a, skinid;
	
	new weapon[13], ammo[13];
	
    for(new i = 0; i < 13; i++)
    {
        GetPlayerWeaponData(playerid, i, weapon[i], ammo[i]);
    }
    
	skinid = GetPlayerSkin(playerid);
	GetPlayerPos(playerid, x, y, z);
 	GetPlayerFacingAngle(playerid, a);
	
	format(savestr, sizeof(savestr), "AddPlayerClass(%d, %0.4f, %0.4f, %0.4f, %0.4f, %d, %d, %d, %d, %d, %d); // %s\r\n", skinid, x, y, z, a, weapon[0], ammo[0], weapon[1], ammo[1], weapon[2], ammo[2], params);
	
	new File:savedpositions = fopen("savedpositions.txt", io_append);
	fwrite(savedpositions, savestr);
	fclose(savedpositions);
	return 1;
}
This will do the same thing and save it in your scriptfiles folder.
Reply
#5

Maybe try to reinstall GTA.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)