制作单词过滤器(NextCord,Python)

发布于 2025-01-22 08:12:33 字数 62 浏览 0 评论 0原文

如何制作一个单词过滤器?我正在使用NextCord(PY),我想制作一个单词过滤器,但我真的不知道从哪里开始。

How can I make a word filter? I am using nextcord(py) and I would like to make a word filter, but I dont really know where to start.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌梦深 2025-01-29 08:12:33

这是一个开始,所以您需要列出
word_to_filter = [“ WordOne”,“ Word2”]
然后,我们需要在列表中运行一个循环并获取每个单词
word_to_filter中的单词:
将其放入一个消息事件中:

`@client.event()
 async def on_message(self, message):
    for word in words_to_filter:
        if word in message.content
            await message.channel.purge(limit=1)
            await message.channel.send("youve been filtered")`

here is a start so you will need to make a list
words_to_filter = ["wordone", "word2"]
then we will need to run a loop through the list and get each word
for word in words_to_filter:
put this in a on message event:

`@client.event()
 async def on_message(self, message):
    for word in words_to_filter:
        if word in message.content
            await message.channel.purge(limit=1)
            await message.channel.send("youve been filtered")`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文