Add a /amsg plugin

This commit is contained in:
mathieui 2012-02-07 01:12:21 +01:00
parent 5593fabe6c
commit e47c8d3c19

13
plugins/amsg.py Normal file
View file

@ -0,0 +1,13 @@
# A simple broadcast plugin
from plugin import BasePlugin
from tabs import MucTab
class Plugin(BasePlugin):
def init(self):
self.add_command('amsg', self.command_amsg, "Usage: /amsg <message>\nAmsg: Broadcast the message to all the joined rooms.")
def command_amsg(self, args):
for room in self.core.tabs:
if isinstance(room, MucTab) and room.joined:
room.command_say(args)