Author Topic: Only Admins Can Talk  (Read 286 times)

Can somebody make a mod for me where only admins can talk? This should be a toggle-able thing. This would be AWESOME for my ComedyClub and it would let me get more control over it.

Thank you!

http://forum.blockland.us/index.php?topic=99308.0
Has RTB prefs for when you enable it in game on whether admins automatically have a voice or not. And you can also assign individual players with voices, too. (Not to be confused with VON)


package onlyAdbins
{
   function serverCmdMessageSent(%c, %t)
   {
      if(!%c.isSuperAdmin && $onlyAdbinsCanChat)
         return;
      parent::serverCmdMessageSent(%c, %t);
   }
};
activatePackage("onlyAdbins");

function serverCmdToggleAdminOnlyChat(%c)
{
   if(!%c.isSuperAdmin)
   return;

   $onlyAdbinsCanChat = !$onlyAdbinsCanChat;

   messageAll('', "\c5Admin only chat has been toggled\c3" SPC ($onlyAdbinsCanChat ? "on." : "off."));
}
http://forum.blockland.us/index.php?topic=99308.0
Has RTB prefs for when you enable it in game on whether admins automatically have a voice or not. And you can also assign individual players with voices, too. (Not to be confused with VON)
well forget.

http://forum.blockland.us/index.php?topic=99308.0
Has RTB prefs for when you enable it in game on whether admins automatically have a voice or not. And you can also assign individual players with voices, too. (Not to be confused with VON)
OMG OMG OMG THANK YOU SO MUCH!  :cookie: :cookie: :cookie: :cookie: :cookie: :cookie: :cookie: :cookie: :cookie: