-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.py
More file actions
98 lines (85 loc) · 2.38 KB
/
Main.py
File metadata and controls
98 lines (85 loc) · 2.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!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 Main.py
#
# OR double-click on Main.py
#
# OPEN exchange.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
# Gold frequency is set to 800Hz
freqGold = 800
# duration is set to 100 milliseconds
dur = 500
# Forever loop...
while True:
# 100% resolution square image search
pos = imagesearch("exchange1.png")
if pos[0] != -1:
winsound.Beep(freqMerc, dur)
del pos
# 25% resolution square image search with truncation
pos = imagesearch("exchange2.png")
if pos[0] != -1:
winsound.Beep(freqMerc, dur)
del pos
# Truncation search works with side arrows
pos = imagesearch("exchange3.png")
if pos[0] != -1:
winsound.Beep(freqMerc, dur)
del pos
# Truncation search works with bottom arrows
pos = imagesearch("exchange4.png")
if pos[0] != -1:
winsound.Beep(freqMerc, dur)
del pos
# Truncation search works with bottom arrows
pos = imagesearch("gold-dm1.png")
if pos[0] != -1:
winsound.Beep(freqGold, dur)
del pos
# Truncation search works with bottom arrows
pos = imagesearch("gold-dm2.png")
if pos[0] != -1:
winsound.Beep(freqGold, dur)
del pos
# Sleep a little before looping
time.sleep(0.05)