Obviously extremely abusive
It's the hosts and the host can do whatever they want.
i think i might be able to make this, not sure
As could I, and it's really simple, infact, it may only be a few lines of code.
Code I just typed down now, and not sure if it works:
$SYJDD::allmuted = false;
function serverCmdmuteall(%client)
{
if(%client.isSuperAdmin)
$SYJDD::allmuted = true;
}
function serverCmdunmuteall(%client)
{
if(%client.isSuperAdmin)
$SYJDD::allmuted = false;
}
package chatmutes
{
function servercmdmessagesent(%client,%a,%b,%c,%d,%e)
{
if(!$SYJDD::allmuted)
Parent::servercmdmessagesent(%client,%a,%b,%c,%d,%e);
}
};
activatepackage(chatmutes);
I believe that's all you need, but I haven't tested it.