1
0
Fork 0
forked from swee/MeowNex
This commit is contained in:
Nova Cat 2024-12-01 14:03:41 -08:00
parent d92130e93a
commit 50d77db17a

View file

@ -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
@ -427,6 +432,13 @@ while True:
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":