e1956533a6
And fix some imprecisions/mistakes in the help.
13 lines
494 B
Python
13 lines
494 B
Python
from plugin import BasePlugin
|
|
|
|
class Plugin(BasePlugin):
|
|
"""
|
|
Adds several convenient aliases to /status command
|
|
"""
|
|
def init(self):
|
|
for st in ('dnd', 'busy', 'afk', 'chat', 'xa', 'away', 'available'):
|
|
self.add_command(st,
|
|
lambda line: self.core.command_status(st + ' "'+line+'"'),
|
|
usage='[status message]',
|
|
short='Set your status as %s' % st,
|
|
help='Set your status as %s' % st)
|