I was wondering how I would make a bot that could learn how the player gets around the map.
Any ideas??
I was wondering how I would make a bot that could learn how the player gets around the map.
Any ideas??
first of all, having it truly learn the movements of the player is stupidly hard, you’re gonna need neural networks if you want that.
You can pretty easily make it mimic the player’s movement by making a node wherever a player has jumped, and one every .5 seconds or so. This way, it can retrace them, and thus walk along the same path as that of the player.
Thanks. I’m learning how to do use the neural-network-library (Neural Network Library 2.0) right now.
It’s a bit confusing, but I’m sure I’ll get the hang of it.