Install this plugin, it will delete a file which makes map change too long.
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "File Remover"
#define VERSION "1.0"
#define AUTHOR "Alka"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
}
public plugin_end()
{
new szDir[] = "/", DirPointer, szFile[32];
DirPointer = open_dir(szDir, "", 0);
while(next_file(DirPointer, szFile, sizeof szFile - 1))
{
if(szFile[0] == '.')
continue;
if(containi(szFile, "custom.hpk") != -1)
{
delete_file(szFile);
break;
}
}
close_dir(DirPointer);
return 1;
}