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 import sqlite3
cwd = getcwd() cwd = getcwd()
import re import re
from random import choice, randint as random from random import choice, randint as random, randrange
import traceback import traceback
import threading import threading
from pathlib import Path from pathlib import Path
@ -194,6 +194,11 @@ irc.connect_irc(
sbconfig = config() sbconfig = config()
threes = [":3", ":3c", "uwu", "owo", "/ᐠ。ꞈ。ᐟ\\", "(✿◠‿◠)"] threes = [":3", ":3c", "uwu", "owo", "/ᐠ。ꞈ。ᐟ\\", "(✿◠‿◠)"]
snacks = ["PepperMintHTMLs", "Dice App candies", "SweeCrypt codes", "Windows 11 Bloomberry flavored icecream"] 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 run = 0
block = 0 block = 0
global times global times
@ -426,7 +431,14 @@ while True:
block+=1 block+=1
run-=1 run-=1
update() 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": elif command[0] == "$shell":
if perms == "full": if perms == "full":