diff --git a/cc/bap b/cc/bap deleted file mode 100644 index b991585..0000000 --- a/cc/bap +++ /dev/null @@ -1,3 +0,0 @@ -from random import choice -a = ['Beep!', 'T-T', 'Ow!'] -print(choice(a)) diff --git a/cc/headpat b/cc/headpat deleted file mode 100644 index 8992c09..0000000 --- a/cc/headpat +++ /dev/null @@ -1,3 +0,0 @@ -from random import choice -a=['Prr!', "Meep!", '-w-'] -print(choice(a)) diff --git a/cc/meow b/cc/meow deleted file mode 100644 index dfb0204..0000000 --- a/cc/meow +++ /dev/null @@ -1,4 +0,0 @@ -from sys import argv -from random import choice -meows = ['Meow!', 'Nyaa~', 'Mrow.', 'Prr! :3', 'Hiss!', "Mrrp?", "Mreow.", "!woeM", "3: !rrP", "!ssiH", "~aayN", "Mew!", "Moew!"] -print(argv[1] + ": " + choice(meows)) \ No newline at end of file diff --git a/cc/patpat b/cc/patpat deleted file mode 100644 index 8992c09..0000000 --- a/cc/patpat +++ /dev/null @@ -1,3 +0,0 @@ -from random import choice -a=['Prr!', "Meep!", '-w-'] -print(choice(a)) diff --git a/sweebot.py b/sweebot.py index ba654c1..6a6613a 100644 --- a/sweebot.py +++ b/sweebot.py @@ -432,13 +432,23 @@ while True: run-=1 update() - elif command[0] == "$petpet" or command[0] == "$headpat": + elif command[0] == "$patpat" or command[0] == "$headpat": happiness += (1 if happiness != 10 else 0) multiline(choice(pats) + " (Emotion: Upset " + ("#" * int(happiness)) + ("-" * int(10-happiness)) + " Happy)", channel) - + elif command[0] == "$emotion": + multiline("Emotion: Upset " + + ("#" * int(happiness)) + + ("-" * int(10-happiness)) + " Happy)", + channel) + elif command[0] == "$bap": + happiness -= (1 if happiness != 0 else 0) + multiline(choice(pats) + " (Emotion: Upset " + + ("#" * int(happiness)) + + ("-" * int(10-happiness)) + " Happy)", + channel) elif command[0] == "$shell": if perms == "full":