Is it possible to start/stop other plugins on a function?
Something like:
PHP Code:
register_clcmd("say /startguns", "Guns_Menu_Enabled")
register_clcmd("say /endguns", "Guns_Menu_Disabled")
/***/
public Guns_Menu_Enabled() {
//Some code to start f.e. guns_menu_plugin
}
public Guns_Menu_Disabled() {
//Some code to stop f.e. guns_menu_plugin
}