Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
And the way I did:
from discord.ext.tasks import loop
import datetime
# send auto AOP
@loop(seconds=1)
async def task():
nowtime = str(datetime.datetime.now().time().strftime("%H.%M.%S"))
if nowtime == "18.30.00":
# your task
task.start()
The simplest option is through the built-in loop. bg_task will be executed every n-units of time (in the example, every second, but this is unnecessary for the condition you specified, it can be, for example, every half a minute). Well, in this function you need to check the time and send it at the appropriate moment
import asyncio
import discord
from discord.ext import commands
from discord.ext.tasks import loop
bot = commands.Bot(command_prefix = '!!')
@loop(seconds=1)
async def bg_task():
pass # doing smth
@bot.command()
async def hi(ctx):
await ctx.send('Hi!')
bg_task.start()
bot.run('************************')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question