Hello everybody.
My plugin is :
PHP Code:
public plugin_init()
{
register_concmd("amx_test","cmd_test",ADMIN_BAN,"<target> <amount>")
}
public cmd_test(id,level,cid)
{
...
return PLUGIN_HANDLED;
}
It ends with PLUGIN_HANDLED. Is there any way to hook this command, with another plugin ? Getting everything wrote in console,, args.. etc.
Is it possible _? How ? Please help me =D
__________________