Created
January 3, 2022 14:16
-
-
Save tropicbliss/6b5b60ff0cf26e69eee8fea0942fef4e to your computer and use it in GitHub Desktop.
Hypixel Skyblock Melody Harp Macro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
import pyautogui | |
mapping = {"1": (1, 2), "2": (1, 2), "3": (1, 2), "4": ( | |
1, 2), "5": (1, 2), "6": (1, 2), "7": (1, 2)} | |
pause_delay = 1 | |
with open("sheet.txt", 'r') as file: | |
text = file.read().rstrip() | |
dialog = pyautogui.confirm("Shall we start?") | |
if dialog == "Cancel": | |
sys.exit() | |
for char in text: | |
if char in mapping: | |
position = mapping[char] | |
pyautogui.moveTo(position) | |
pyautogui.typewrite("q") | |
elif not char == '.': | |
print("Unexpected character found, exiting...") | |
sys.exit(1) | |
time.sleep(pause_delay) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you so much i have all songs 100% niw