From 4bf2e16038e3645691cf3eacc69e1b2a21774054 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Fri, 4 Feb 2022 22:26:00 +0100 Subject: [PATCH] test --- bot_main.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bot_main.py b/bot_main.py index 1a0b868..67d8849 100755 --- a/bot_main.py +++ b/bot_main.py @@ -6,6 +6,8 @@ from argparse import ArgumentParser import slixmpp +from hintTables import wordtable + class MUCBot(slixmpp.ClientXMPP): @@ -86,6 +88,13 @@ class MUCBot(slixmpp.ClientXMPP): for stanza objects and the Message stanza to see how it may be used. """ + + for hint in wordtable: + if hint in msg['body']: + self.send_message(mto=msg['from'].bare, + mbody="%s, ça a l'air d'être une commande... mais je ne l'ai pas saisie." % msg['mucnick'], + mtype='groupchat') + if msg['mucnick'] != self.nick and self.nick in msg['body']: self.send_message(mto=msg['from'].bare, mbody="%s, je n'ai pas compris (je suis un peu bête) mais j'ai bien lu!" % msg['mucnick'],