31.12.2015, 16:09
hello forum samp, help me this script i can't delete file, thanks all and happy new year
Код HTML:
forward test(playerid,password[]);
public test(playerid,password[])
{
new string2[128];
format(string2, sizeof(string2), "User/%s.ini",password);
if(dini_Exists(string2))
{
fremove("string2");
SendClientMessage(playerid, COLOR_WHITE, "success");
return 1;
}
SendClientMessage(playerid, COLOR_WHITE, "fail");
return 1;
}



