First, a bit of knowledge. The most handy way to make a bot is to read directly into the game's memory to retrieve informations about the game state (health point, position of our character in the world, targets etc). Having all these ressources available to us makes it easy to take decisions. s_CurrentTarget = 0x00BD07A8, Example of an old hexadecimal memory offset for getting current target on WoW However game designers who are rightfully concerned about people reading their game's memory like an open book, try to hide these informations to make the job harder. This can drastically increase the Continue Reading