13 lines
408 B
Python
13 lines
408 B
Python
"""
|
|
Once loaded, everything you will send will be IN CAPITAL LETTERS.
|
|
"""
|
|
from plugin import BasePlugin
|
|
|
|
class Plugin(BasePlugin):
|
|
def init(self):
|
|
self.api.add_event_handler('muc_say', self.caps)
|
|
self.api.add_event_handler('conversation_say', self.caps)
|
|
self.api.add_event_handler('private_say', self.caps)
|
|
|
|
def caps(self, msg, tab):
|
|
msg['body'] = msg['body'].upper()
|