我如何让我的漫游器删除1秒钟后在频道中发送的任何消息?

时间:2020-06-11 05:30:43

标签: discord discord.py discord.py-rewrite

我希望我的漫游器在发送频道后1秒钟删除所有在频道中键入的消息。 有办法吗?

2 个答案:

答案 0 :(得分:0)

使用await ctx.send("message", delete_after=1)。请参阅this

答案 1 :(得分:0)

尝试这样的事情:

class SignUpView(CreateView):
    model = User
    from_class = SignUpForm
    success_url = reverse_lazy('home')
    template_name = 'common/register.html'