28.01.2015, 10:57
it be like this to remove a file with YSI
pawn Код:
new pName[MAX_PLAYER_NAME], str[50];
GetPlayerName(playerid, pName, sizeof pName);
format(str, sizeof str, "%s.ini", pName);
fremove(str);
// this is just an example. If you saved the info into "House" folder, you'd have to format the str in otherway:
format(str, sizeof str, "/Houses/%s.ini", pName);
fremove(str)