19 lines
251 B
Python
19 lines
251 B
Python
|
#!/usr/bin/env python3
|
||
|
"""
|
||
|
uwu
|
||
|
"""
|
||
|
import random
|
||
|
|
||
|
from module import commands
|
||
|
|
||
|
@commands("uwu")
|
||
|
def uwu(bot, trigger):
|
||
|
"""
|
||
|
uwu's
|
||
|
"""
|
||
|
if random.randint(1, 100) >= 95:
|
||
|
upper = 10000
|
||
|
else:
|
||
|
upper = 100
|
||
|
bot.msg("uwu " * random.randint(1, upper))
|