uwu
This commit is contained in:
parent
c9b6a84c69
commit
432139f2cc
18
modules/uwu.py
Normal file
18
modules/uwu.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/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))
|
Loading…
Reference in New Issue
Block a user