Hello, how can I pause a plugin in specific map?
For example:
If map has "ze_" prefix then it will disable zp_gamemode_nemesis.amxx
&&
If map has "de_, cs_ or big_" prefix then it will disable zp_gamemode_multi_infection.amxx
I've also used "configs/maps/plugins-<map prefix>.ini" method but it's more hassle to me.
So I want other method instead of that.
EDIT:
Did try using this:
PHP Code:
if(containi(map, "de_") == -1)
{
pause("ac", "zp_gamemode_multi_infection.amxx")
}
else if(containi(map, "ze_") == -1) {
pause("ac", "zp_gamemode_nemesis.amxx")
}
}
But it doesn't work.
__________________