Editing the menu would be hard
but you can disable the command instead.
That way the menu will maybe work with the other gag plugin because
the menu executes the command with the params on the player that has chosen it.
To disable gag, look in amx_super50-serious.sma & find these lines:
PHP Code:
register_concmd("amx_gag", "CmdGag", ADMIN_LEVEL_A, "<nick, #userid or authid> <a|b|c> <time> - Flags: a = Normal Chat | b = Team Chat | c = Voicecomm");
register_concmd("amx_ungag", "CmdUngag", ADMIN_LEVEL_A, "<nick, #userid or authid>");
And comment them like this:
PHP Code:
/*
register_concmd("amx_gag", "CmdGag", ADMIN_LEVEL_A, "<nick, #userid or authid> <a|b|c> <time> - Flags: a = Normal Chat | b = Team Chat | c = Voicecomm");
register_concmd("amx_ungag", "CmdUngag", ADMIN_LEVEL_A, "<nick, #userid or authid>");
*/
Edit: I just noticed that the command parameters in xPaw's plugin are arrange other then our command.
If you want, i can edit it to work with the menu.
__________________