how do i creat my won wow bot??

02/15/2008 07:12 phoenixhilord#1
ive been brushing up on my C++ but i still have no clue on how to make my own world of warcraft bot i want to make one for my custom playing style insed of having to change every thing around for my glider ( i havent payed using friends) but can someone link me a site pr PM me one ive looked but couldent find anything on how to make one and i have lots of free time on my hands so i can attempt to make one.. can someone please help me!!!!???
02/24/2008 15:58 H2G#2
the only thing i know aboutmaking WoW bots is bind up 1234567890 to skills and it will autoattack i dont know anything about scripting but i know that if you bind that i will find an target and prolly attack it
i hope i helped,

-the no0b'
02/25/2008 16:35 Bot_interesierter#3
well at first you should think about how your bot should obtain information about the ingame, there are serveral ways:
Pixel reading, you check screen locations of your wow window for specific colors
Memory reading, you read the information you need out of your Clients memory, this is quite tricky, since most statick memory stuff changes with every patch of wow.
Injection to Hijack the WoWLua Engine, this is the most advanced method, the tricky thing about it is to hide what you are doing from the warden, I didn't rev engeneer the warden so I don't know if it's true, but I was told that the warden checks for lua hijacking so you should be realy careful with this method.

All of the Methods I mentiont above will require a good knowlegde of the w32api and for the two more advanced ones you'll need some asm knowlegde and you should now a lot about the w32Process n thread stuff.