Last active 10 hours ago

Revision 7c793a802f22cd5eeb1fd1d10d7ddcd3b68b140b

shutup.py Raw
1import znc
2badwords = [
3 ":,3",
4 ":,,3",
5 ":c",
6 ":C",
7 ":<",
8 "cry",
9 "cries",
10 "die",
11 "suicide",
12 "unalive",
13 "hate",
14 "malice",
15 "sigh"
16]
17
18class shutup(znc.Module):
19 description = "Strip away swee's depression shit because he deserves it."
20 module_types = [znc.CModInfo.GlobalModule]
21 def OnUserTextMessage(self, msg):
22 if self.GetUser().GetUsername() == "swee":
23 text = msg.GetText()
24 for word in text.split():
25 if word in badwords:
26 return znc.HALT
27 return znc.CONTINUE