SA-MP Forums Archive
Help with achievements - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help with achievements (/showthread.php?tid=581886)



Help with achievements - Sc0pion - 16.07.2015

Fixed!


Re: Help with achievements - Sc0pion - 22.07.2015

Fixed!


Re: Help with achievements - xVIP3Rx - 22.07.2015

pawn Код:
new file[100];
format(file,sizeof(file),"/Database/Achievements/%s.txt", pname);
new File:handle = fopen(file, io_write);

if(handle)// Check, if file is open
{
    format(string, sizeof(string), "Robbed 10 Players.\r\n");
    fwrite(handle, string);
    fclose(handle);
}
else
{
    // Error
    print("Failed to open file the file".");
}
source