12 lines
213 B
Python
12 lines
213 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 ") |