Quote:
Originally Posted by m_pro_m
hm ... but i dont know a name of map  ...
|
you can still use per-map plugin feature as Exolent said (with cs_ or de_ prefixes)
from amxx wiki (
http://wiki.amxmodx.org/index.php/Configuring_AMX_Mod_X )
For example, if you wanted the map de_dust to disable the plugin
ham.amxx and enable the plugin
pickle.amxx you would put this in
amxmodx/configs/maps/plugins-de_dust.ini:
Code:
ham.amxx disabled
pickle.amxx
As of AMX Mod X 1.8.0, you are now able to create plugin.ini files for map prefixes. To do this, create a file called plugins-<prefix>.ini, where <prefix> would mean de, cs, awp, surf, ect. All prefix config files go in the same location as per map, the amxmodx/configs/maps/ directory. configs/maps/plugins-de.ini - Would enable/disable any plugins for all de_* maps.
Plugin based configuration files are loaded by map first (plugins-de_nuke.ini) and prefix second (plugins-de.ini).
__________________