forked from swee/MeowNex
emotion
This commit is contained in:
parent
d92130e93a
commit
50d77db17a
1 changed files with 14 additions and 2 deletions
16
sweebot.py
16
sweebot.py
|
@ -6,7 +6,7 @@ from os import system as ossystem, path, environ, listdir, getcwd
|
|||
import sqlite3
|
||||
cwd = getcwd()
|
||||
import re
|
||||
from random import choice, randint as random
|
||||
from random import choice, randint as random, randrange
|
||||
import traceback
|
||||
import threading
|
||||
from pathlib import Path
|
||||
|
@ -194,6 +194,11 @@ irc.connect_irc(
|
|||
sbconfig = config()
|
||||
threes = [":3", ":3c", "uwu", "owo", "/ᐠ。ꞈ。ᐟ\\", "(✿◠‿◠)"]
|
||||
snacks = ["PepperMintHTMLs", "Dice App candies", "SweeCrypt codes", "Windows 11 Bloomberry flavored icecream"]
|
||||
baps = ["T-T", "Ow!", "Beep!"]
|
||||
pats = ["-w-", "Meep...", "Prr!"]
|
||||
meows_happy = ['Meow!', 'Nyaa~', 'Mrow.', 'Prr! :3', "Mrrp?", "Mreow.", "!woeM", "3: !rrP", "~aayN", "Mew!", "Moew!"]
|
||||
meows_upset = ['Hiss!', "!ssiH", "Grrr..."]
|
||||
happiness = 5
|
||||
run = 0
|
||||
block = 0
|
||||
global times
|
||||
|
@ -426,7 +431,14 @@ while True:
|
|||
block+=1
|
||||
run-=1
|
||||
update()
|
||||
|
||||
|
||||
elif command[0] == "$petpet" or command[0] == "$headpat":
|
||||
happiness += 1
|
||||
multiline(choice(pats) + " (Emotion: Upset " +
|
||||
("#" * int(happiness)) +
|
||||
("-" * int(10-happiness)) + " Happy",
|
||||
channel)
|
||||
|
||||
|
||||
elif command[0] == "$shell":
|
||||
if perms == "full":
|
||||
|
|
Loading…
Reference in a new issue