You can send the forward to all plugins using CreateMultiForward() to set up a forward and then execute it using ExecuteForward().
(Simple) Example:
Code:
#include <amxmodx>
new hForward;
public plugin_init() {
hForward = CreateMultiForward("neo_class_enabled", ET_IGNORE, FP_CELL);
register_clcmd("amx_test", "clcmdTest");
}
public clcmdTest(id) {
new ret;
ExecuteForward(hForward, ret, id)
}
__________________