制作单词过滤器(NextCord,Python)
如何制作一个单词过滤器?我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个开始,所以您需要列出
word_to_filter = [“ WordOne”,“ Word2”]
然后,我们需要在列表中运行一个循环并获取每个单词
word_to_filter中的单词:
将其放入一个消息事件中:
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: