😂😂👌👌💯💯
This commit is contained in:
parent
432139f2cc
commit
7504a2d342
19
modules/emojis.py
Normal file
19
modules/emojis.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
EMOJI
|
||||
"""
|
||||
import random
|
||||
|
||||
import emoji
|
||||
|
||||
from module import commands
|
||||
|
||||
@commands("emoji")
|
||||
def rand_emoji(bot, trigger):
|
||||
"""
|
||||
Posts a random number of random emojis.
|
||||
"""
|
||||
msg = []
|
||||
for _ in range(random.randint(1, 100)):
|
||||
msg.append(random.choice(list(emoji.UNICODE_EMOJI.keys())))
|
||||
bot.msg("".join(msg))
|
Loading…
Reference in New Issue
Block a user