예제 #1
0
 def __init__(self, chatbot):
     RegexImplicitCommand.__init__(self, chatbot)
     self._regex_flags = re.IGNORECASE
     self._patterns = ['^fu(c|ck|k) (yo)?u babel']
     self._responses = ['fuk u %(sender_nick)s']
 def __init__(self, chatbot):
     RegexImplicitCommand.__init__(self, chatbot)
     self._regex_flags = re.IGNORECASE
     self._patterns = ['^fu(c|ck|k) (yo)?u (?P<name>((?!babel).*))']
     self._responses = ['yeah, f**k you %(name)s!']