Anyone know where is UNIT_FIELD_AURA located!?
Anyone found player_base yet or know how to look for it? I've tried backtracking from the player struct but no-go so far.
Then it comes to be that the soothing light at the end of your tunnel
Was just a freight train coming your way
Read my other thread. It has been replaced.
Just use the object manager, about 100x easier to update between patches.
Interestingly enough GetModel seems to have changed a fair bit. It now takes two params and returns values through them.
Last edited by Cypher; 10-16-2008 at 02:57 PM.
korknob's combat log:
Korknob fails at updating his comercial bot on patch day!
Patch day hits Korknob criticaly for 1337 dmg!
Korknob dies!
sorry but if you're selling out you should know what you're doing...
I hacked 127.0.0.1
Knew I would get a comment like that, I thank Cypher for holding back. I'm on dialup so downloading the patch is a trick in itself. Reinstalled WoW 3 times because the update kept failing all from a bad stick of ram :-\ So I'm a little late to the game.
I've got the ObjMgr stuff but I like player_base because it gives me access to Sticky X/Y/Z and speed variables as well.
How I'm looking for player_base:
Search for X value, then change the results to 0 one at a time until I find the sticky X (one that moves the character), subtract 0x10 and look for that address. Subtract 0x110 from that address and you're at player_base. I've searched for that address and got about 6 results, then i tried searching for those addresses and didnt get any pointers to them.
As for selling out there are more people using a cracked version of my software than people that have bought it. /shrug
Then it comes to be that the soothing light at the end of your tunnel
Was just a freight train coming your way
k...and how does the codes stay updated???it keeps saying new pointers needed...i press X or anything and it goes back to the normal code it was before...
One step at a time...
[EDIT - Simplified....]
I also added it to the wiki:Code:[[[0127BFFC]+0x30]+0x28] == PlayerBase
http://www.madx.dk/wowdev/wiki/index...yer#PlayerBase
Last edited by UnknOwned; 10-16-2008 at 05:12 PM.
still confused with the XYZ pointers.
Thank you sir, saved me quite a bit of time.
Then it comes to be that the soothing light at the end of your tunnel
Was just a freight train coming your way
anything yet??all this code stuff doesnt mean we know it....(F5) nope no stuff to explain the xyz pointers yet....
One step at a time...
Read an Int from 0127BFFC and add 0x30 to it, this is the next adress read an int from it and add 0x28 to it this is your PlayerBase Pointer
Add x7D0, 0x7D4, 0x7D8, 0x7DC to the Player Base to get the Adress of X,Y,Z, faceing.
pretty easy ^^
I hacked 127.0.0.1
@Korknob
What I was referring to was grabbing LocalGUID from the ObjectManager, then passing that to GetObjectByGUID. That will get you a pointer to the LocalPlayer and theres no need to worry about messy pointer arithmetic that changes vastly between patches.
Although Malu's approach will work easier in AutoIt. Each to their own, but I prefer stuff I can automate. (eg via pattern scanning, I basically had to do zero updating to my object manager implementation)