Untitled
unknown
python
2 years ago
348 B
8
Indexable
async def ascii_command(message, text):
print(f'Command used: ascii by: {message.author.name} ({message.author.id}) at {message.created_at}')
if text:
ascii_art = pyfiglet.figlet_format(text)
await message.reply(content=f"```{ascii_art}```")
else:
await message.reply(content="Need to provide text to use ASCII")Editor is loading...
Leave a Comment