 |
|
Senior Member
Join Date: Mar 2009
Location: Braila,Romania
|

04-25-2013
, 06:17
Re: M_Antirusher_2.6_alfa.amxx help pls !!! :(((
|
#2
|
use this:
i think this is the cvar for time:
PHP Code:
amx_antirusher_time 60
and for maps:
Quote:
Map Specific Plugins
Each map can have a specific plugins.ini file for which it will load on map change. This plugins file will be loaded in addition to the standard plugins.ini file.
The file is to be located at amxmodx/configs/maps/plugins-mapname.ini For example, for de_dust you would create the file amxmodx/configs/maps/plugins-de_dust.ini
In addition, a plugin can be tagged as "disabled" which will prevent this plugin from being loaded. You accomplish this the same way you tag a plugin as debug mode, by entering the word disabled after the plugin name in the file, which will prevent it from being loaded for that map.
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:
ham.amxx disabled
pickle.amxx
Note: This feature was added in AMX Mod X 1.76
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/map/ 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).
|
Last edited by zi443r; 04-25-2013 at 06:28.
|
|
|
|