In reply to illone: [Hi, I am new here, is it possible to create a Path of Exile bot with the program, that can open a map and play the map by itself?]
it's not a simple task and will involve C# coding, this is how steps would look like:
1) Add WebUI overlay, which will be serving as a main part of your bot. It will be basically a program running inside EyeAuras which will draw minimap, show settings to user, etc
2) Train a segmentation model using ML - take 100-200 screenshots of a minimap and mark areas which are passable, this will be used for movement purposes. Configure ML Search trigger to process minimap.
3) Train another model which will track enemies. Possibly the best way is find health bars on a screen.
4) Throw in color searches/image searches/ml searchers which will gather current state of character - skills, health/mana, etc
5) In your WebUI overlay you'll be able to access all triggers configured (minimap, skills, health, etc) - now you will be able to write logic in C# which will do the actual movement, clicks, target selection, etc
Done
The main profit of doing it in eyeauras is that you potentially can skip A LOT of code which you'll have to write otherwise (machine learning inference, input simulation, anticheat protection, image capture and processing, etc), but it will still require writing C# code and some technical skills