This bot has been tested on the Steam version of FATE: The Traitor Soul but should work fine for all FATE games.
pip3 install pyautogui pydirectinput opencv-python
The bot operates optimally when the game is set to Window Mode with a resolution of 1920x1080.
Here is a sample of the changes to be made in the config.dat
file:
SCREENWIDTH: 1920
SCREENHEIGHT: 1080
FULLSCREEN: 0
[...]
VSYNC: 0
[...]
1920x1080: 1
[...]
FOV: 70
If you need to adjust the fishing zone (where you click to start the fishing process), you can modify the values in the fishing_bot.py
file at lines 29 and 30:
fishing_spot_offset_x = 250
fishing_spot_offset_y = 0
The values are subtracted from the default position.
- Install the required Python libraries.
- Open the game and move to your fishing spot.
- Open a terminal in the directory where
fishing_bot.py
is located. - Execute the bot using Python 3:
python3.exe .\fishing_bot.py
. - When finished, return to the terminal and press
Ctrl-C
to shut down the bot.