-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinux.py
More file actions
87 lines (74 loc) · 2.42 KB
/
Linux.py
File metadata and controls
87 lines (74 loc) · 2.42 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
#!python3
#####################################################################
#
# Works with Python 3.12+
#
# Linux version patch from Polish K103 clan: [PSS] Krzys
#
#
# DOWNLOAD THIS:
# https://codeload.github.com/fdd26/Exchange-Beep/zip/refs/heads/main?file=Exchange-Beep-main.zip
#
# Extract it
#
# OPEN bash in that folder
#
# TYPE THIS to install Python3 dependencies:
# pip3 install pyautogui
# pip3 install python_imagesearch
#
# TYPE THIS to run the program
# python3 Linux.py
#
# OPEN exchange.png to test, you should hear some beeps.
#
#####################################################################
#
# Original Python3 script forked from:
# https://github.com/TotalBattleBots/Exchange-Beep
#
#####################################################################
import os
#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 = 0.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:
os.system('play -n synth {} sine {}'.format(dur, freqMerc)) # Play if find "exchange"
del pos
# Truncation search works with side arrows
pos = imagesearch("exchange3.png")
if pos[0] != -1:
os.system('play -n synth {} sine {}'.format(dur, freqMerc)) # Play if find "exchange"
del pos
# Truncation search works with bottom arrows
pos = imagesearch("exchange4.png")
if pos[0] != -1:
os.system('play -n synth {} sine {}'.format(dur, freqMerc)) # Play if find "exchange"
del pos
# Truncation search works with bottom arrows
pos = imagesearch("gold-dm1.png")
if pos[0] != -1:
os.system('play -n synth {} sine {}'.format(dur, freqGold)) # Play if find "gold-dm"
del pos
# Truncation search works with bottom arrows
pos = imagesearch("gold-dm2.png")
if pos[0] != -1:
os.system('play -n synth {} sine {}'.format(dur, freqGold)) # Play if find "gold-dm"
del pos
# Sleep a little before looping
time.sleep(0.05)