-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIs-Crypt-Left-Menu.py
More file actions
73 lines (65 loc) · 1.68 KB
/
Is-Crypt-Left-Menu.py
File metadata and controls
73 lines (65 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!python3
#####################################################################
#
# Works with Python 3.12+
#
# Tested successfully on Windows Desktop
#
#
# GO HERE:
# https://www.python.org/downloads/
#
# DOWNLOAD THIS:
# https://www.python.org/ftp/python/3.12.2/python-3.12.2-amd64.exe
#
# [x] Install Python3 for all users
# [x] Add Python3 to your PATH environment
#
# DOWNLOAD THIS:
# https://codeload.github.com/fdd26/Exchange-Beep/zip/refs/heads/main?file=Exchange-Beep-main.zip
#
# Extract it
#
# OPEN cmd.exe in that folder
#
# TYPE THIS to install Python3 dependencies:
# pip3 install pyautogui
# pip3 install python_imagesearch
#
# TYPE THIS to run the program
# python.exe Is-Crypt-Left-Menu.py
#
# OR double-click on Is-Crypt-Left-Menu.py
#
# OPEN crypt-left-menu.png to test, you should hear some beeps.
#
#####################################################################
#
# Original Python3 script forked from:
# https://github.com/TotalBattleBots/Exchange-Beep
#
#####################################################################
import winsound
import pyautogui as pag
import time
from python_imagesearch.imagesearch import imagesearch
# Merc frequency is set to 500Hz
freqMerc = 500
# duration is set to 100 milliseconds
dur = 500
# while loops
i = 1
while i < 10:
# 25% resolution square image search
pos = imagesearch("crypt-left-menu.png")
if pos[0] != -1:
winsound.Beep(freqMerc, dur)
print( pos )
del pos
exit( 0 )
# Sleep a little before looping
time.sleep(0.05)
i += 1
print( "\n# Try again [" + str( i ) + "]\n" )
print( "\n#BAD\n" )
exit( 1 )