18.06.2016, 03:53
Hey guys, when I execute the command, it simply closes my server
fdeleteline (found somewhere on the forums)
Anyone ?
PHP код:
CMD:unbanip(playerid, param[])
{
if(!IsAuth(playerid, 3)) return NoAuth(playerid);
if(sscanf(param, "s[16]", param)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /unbanip [IP]");
if(!IsIP(param)) return SendClientMessage(playerid, COLOR_WHITE, "Invalid IP Address.");
new File:ban = fopen("samp.ban", io_read);
new idx = 1, string[128];
while(fread(ban, string))
{
if(strfind(string, param, true) != -1)
{
fdeleteline("samp.ban", idx);
format(string, sizeof(string), "AdmWarn: %s %s has unbanned IP Address %s", RPARN(playerid), RPN(playerid), param);
SendAMessage(1, string);
format(string, sizeof(string), "AdmWarn: %s (%s) has unbanned IP %s", RPN(playerid), RPIP(playerid), param);
Log("logs/unban.log", string);
fclose(ban);
print("Success.");
return 1;
}
printf("IDX: %d", idx);
idx++;
}
fclose(ban);
print("Fail.");
SendClientMessage(playerid, COLOR_WHITE, "IP Address is not banned.");
return 1;
}
PHP код:
fdeleteline(filename[], line)
{
new count, string[256], File:file, File:temp;
file= fopen(filename, io_read);
temp = fopen("tmpfile.tmp", io_write);
while (fread(file, string))
if (++count != line)
fwrite(temp, string);
fclose(file);
fclose(temp);
file= fopen(filename, io_write);
temp = fopen("tmpfile.tmp", io_read);
while (fread(temp, string))
fwrite(file, string);
fclose(file);
fclose(temp);
fremove("tmpfile.tmp");
}