Quote:
Originally Posted by totalcsscripting
how can i do a plugin that when yo turn off amx it would still work.
I tried to mix it with pause cfg but no success.
Thanks you very much
|
In this way as i:
PHP Code:
#define PLUGIN "name plugin"
#define AUTHOR "name"
#define VERSION "version"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public plugin_cfg() {
if(is_plugin_loaded("Pause Plugins") != -1)
server_cmd("amx_pausecfg add ^"%s^"", PLUGIN)
}