Posts: 6,242
Threads: 8
Joined: Jun 2008
Quote:
Originally Posted by Whatname
You can make your own command to save
PHP код:
CMD:saveex(playerid, params[])
{
new Float:x, Float:y, Float:z;
new str[50];
GetPlayerPos(playerid, x, y, z);
format(str, sizeof(str), "/r/ninterior %d coords %0.2f %0.2f %0.2f", GetPlayerInterior(playerid), x, y, z);
new File:f = fopen("/savedpositions.txt", io_append);
fwrite(f, str);
fclose(f);
return 1;
}
|
Can you please read the thread... This isn't what he's asking for.