From 215edb273699cfe334ace781fa5512948bfa45a7 Mon Sep 17 00:00:00 2001 From: Sin <50817549+8cy@users.noreply.github.com> Date: Thu, 30 Jul 2020 18:36:44 -0700 Subject: Add files via upload --- icon.ico | Bin 0 -> 67646 bytes mee6-level-up-sin.py | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 icon.ico create mode 100644 mee6-level-up-sin.py diff --git a/icon.ico b/icon.ico new file mode 100644 index 0000000..d6b0818 Binary files /dev/null and b/icon.ico differ diff --git a/mee6-level-up-sin.py b/mee6-level-up-sin.py new file mode 100644 index 0000000..46a8be6 --- /dev/null +++ b/mee6-level-up-sin.py @@ -0,0 +1,36 @@ +import pyautogui +import time +import ctypes +from datetime import datetime +import os + +ctypes.windll.kernel32.SetConsoleTitleA("Ugly Cat's Level Up Service - Version 1.0") + +print("How to use:") +print("#1 Navigate to Kat's Korner") +print("#2 Open the text channel #emote-spam") +print("#3 Click on the message bar") +print("DISCLAIMER: Please do not navigate off of the Discord message bar, this method only works if you are not doing anything else.") +print() +time.sleep(2) + +answer2 = input("How often do you want to send an emote? (45 is HIGHLY recommended): ") +answer3 = input("What emote would you like to send? (e.g. uglycatdrool): ") +answer = input("Once you are ready, type \"start\": ") +while answer != "start": + answer = input("Once ready, type \"start\": ") + +print("Send time has been set to", str(answer2), "seconds") +print() + +print("Starting level-up service...") +print() +total = 0 +while True: + total = total + 1 + time.sleep(int(answer2)) + pyautogui.typewrite(":" + answer3 + ":") + pyautogui.hotkey("enter") + now = datetime.now() + current_time = now.strftime("%H:%M:%S") + print("[" + str(current_time) + "]", "Message sent. (Total:", str(total) + ")") -- cgit v1.2.3