mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
Merge pull request #109 from fishyboteso/feature/hotkey_fishyQR
This commit is contained in:
commit
a8a41a1660
@ -33,6 +33,7 @@ class SemiFisherEngine(IEngine):
|
|||||||
logging.info("Starting the bot engine, look at the fishing hole to start fishing")
|
logging.info("Starting the bot engine, look at the fishing hole to start fishing")
|
||||||
Thread(target=self._wait_and_check).start()
|
Thread(target=self._wait_and_check).start()
|
||||||
|
|
||||||
|
time.sleep(0.2)
|
||||||
capture = self.window.get_capture()
|
capture = self.window.get_capture()
|
||||||
if capture is None:
|
if capture is None:
|
||||||
logging.error("couldn't get game capture")
|
logging.error("couldn't get game capture")
|
||||||
@ -67,10 +68,11 @@ class SemiFisherEngine(IEngine):
|
|||||||
self.values = get_values_from_image(capture)
|
self.values = get_values_from_image(capture)
|
||||||
# if fishyqr fails to get read multiple times, stop the bot
|
# if fishyqr fails to get read multiple times, stop the bot
|
||||||
if not self.values:
|
if not self.values:
|
||||||
skip_count += 1
|
|
||||||
if skip_count >= 5:
|
if skip_count >= 5:
|
||||||
logging.error("Couldn't read values from FishyQR, Stopping engine...")
|
logging.error("Couldn't read values from FishyQR, Stopping engine...")
|
||||||
return
|
return
|
||||||
|
skip_count += 1
|
||||||
|
time.sleep(0.1)
|
||||||
else:
|
else:
|
||||||
skip_count = 0
|
skip_count = 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user