9 lines
210 B
Python
9 lines
210 B
Python
import time
|
|
|
|
|
|
@tasks.loop(hours = 24.0)
|
|
async def mensaje_jueves():
|
|
try:
|
|
channel = bot.get_channel()
|
|
if time.localtime().tm_wday == 3:
|
|
await channel.send("Buenos días, hoy es ") |