使用Discord.py制作一个在预定日期发送消息的机器人

使用Discord.py制作一个在预定日期发送消息的机器人,第1张

使用Discord.py制作一个在预定日期发送消息的机器人

使用扩展程序执行以下 *** 作的方法如下

tasks

from discord.ext import commands, tasksbot = commands.Bot("!")target_channel_id = 1234@tasks.loop(hours=24)async def called_once_a_day():    message_channel = bot.get_channel(target_channel_id)    print(f"Got channel {message_channel}")    await message_channel.send("Your message")@called_once_a_day.before_loopasync def before():    await bot.wait_until_ready()    print("Finished waiting")called_once_a_day.start()bot.run("token")


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5673653.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存