A
A
Anybody2022-01-11 20:57:15
Python
Anybody, 2022-01-11 20:57:15

How to make a Discord message send at a specific time?

How to send a message at, for example, exactly 18:00 Moscow time? In the discord.py bot. if you can directly bring examples or articles - I will be grateful :)

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Anybody, 2022-01-13
@shurup77

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()

A
Alexander Nesterov, 2022-01-11
@AlexNest

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('************************')

K
Kadabrov, 2022-01-11
@Kadabrov

time.sleep is of course good, but there is
cron
for such tasks Simplifies the work of such tasks at times, more fault-tolerant

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question