Quote:
Originally Posted by Bluntzman
Is anyone a programmer that could help me or push me in the right direction on how to make my own bot? Like start off by working on a open source with directions? It would be really appreciated and i would be very thankful.
|
LiveDown thread has opensource of bot. it's really messy, but works.
but if you want pseudo-code, this is how it works:
use cheat engine or some other memory reading program ( or write your own? ) to find addy (memory address) locations, such as HP or what not
once you find a good amount of addys (you'll use alot, hp, mp, is player talking in chat, is player attacking, enemy monster's hp, coordinates, pet's hp, mp, is pet out? etc. etc.) the bot just basically reads all those addys constantly and then does If statements based on what user entered.
So say user said to use potion that is located at F4 button, when player's hp is 50% or lower. You make bot to keep reading hp, and if hp is 50% or lower, bot sends "F4" keypress to the game, making the game to use w.e. is in the F4 slot (which would be the potion).
and that's generally how it works. No enemy targeted = press tab. If on tab press, there is enemy targeted = attack him. and etc. etc.