krylon/plugins/b33p.py
2021-03-08 07:16:21 -06:00

18 lines
366 B
Python

# -*- coding: utf-8 -*-
from irc3.plugins.command import command
import irc3
@irc3.plugin
class Plugin:
def __init__(self, bot):
self.bot = bot
@command(permission='view')
def (self, mask, target, args):
"""b33p
%%b33p
"""
robostep='{}: b00p'.format(mask.nick)
self.bot.privmsg(target,robostep)