A simple python script to automate fishing.
https://www.youtube.com/watch?v=QL5kxrQK4DI
python
pip
Install PyInstaller:
pip install --upgrade PyInstallerInstall requirement Python nodes:
pip install PyQt5 keyboard opencv-python numpy pyautogui pygetwindow pytesseractUse the provided autofish.spec with PyInstaller to create an executable:
pyinstaller autofish.specIf pyinstaller can't be found, it's probably because your PATH variables aren't set correctly. Easy bypass:
python -m PyInstaller autofish.spec"PyInstaller" capitalization DOES matter here.
You can build the executable so that it will not show the console at runtime. Edit autofish.spec and change line 32 from console=False, to console=True,
If you want to just run the script without building an executable, open command prompt in the same directory as autofish.py, and run:
pip install PyQt5 keyboard opencv-python numpy pyautogui pygetwindow pytesseract
python autofish.py