SA-MP Forums Archive
ini help - 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: ini help (/showthread.php?tid=609029)



ini help - jimis - 07.06.2016

hi guys, i have a simple question, how i can totaly delete a txt file that has yni save things, for example i want to when i ban a player then aytomaicly destroy it txt stats file, like never exist, i am using ini save system, anyone knows?


Re: ini help - TwinkiDaBoss - 07.06.2016

PHP код:
new pName[MAX_PLAYER_NAME], str[50];
GetPlayerName(playeridpNamesizeof pName);
format(strsizeof str"%s.ini"pName);
fremove(str); 
Something like this?


Re: ini help - jimis - 07.06.2016

yes thanks man