Still I cannot find any useful resources on the AI in c++ for Unreal Engine. Are there any for me to learn how to code the AI for my adventure medival game?
Depending on your goals, you may not need to go for pure c++ and default UE tools such as BehaviourTrees can be enough. If by some reason it isn’t enough, then you can read about general AI approaches in games, without any attachments to c++ or unreal, since you can implement any algo you found suitable. Also there are a few AI contests out there in case you want to try yourself at raw AI programming
Are there any specific resources you can suggest? Of just google “ai for games” or “ai c++” and start watching tutorials? I am trying to supply create AI for my opponents to attack me and move around the arena
It’s a long road, I am also looking forward to this, Unreal Engine has some AI Api you may look into that, but if you want to build a modern ai with neural network or something, or something custom then that takes time and the only way I see it, is you are going to build it from zero, there is Open CV that you can implement in Unreal but it’s not easy, with nice extra libs for the AI development, you may want to look at the constructor language google uses. Some of this stuff is open source. I would start with open cv if I were you.
If you want something simple just use unreal’s api, there are tutorials on it on youtube.