Hi there, I could really use some help getting CTM working for 4.1 (14007). I have the folllowing code:
Code:
private void MoveTo(float x, float y, float z)
{
BlackMagic mem = new BlackMagic(Utility.GetWowProcess().Id);
uint ctmBase = (uint)Utility.GetWowProcess().MainModule.BaseAddress + (uint)0x1CCAA0;
mem.WriteFloat(ctmBase + 0x8C, x);
mem.WriteFloat(ctmBase + 0x90, y);
mem.WriteFloat(ctmBase + 0x94, z);
mem.WriteInt(ctmBase + 0x1C, 4);
}
When I execute this code nothing happens, untill I manually click somewhere to CTM and then the game crashes... I have no idea what's wrong with this code, my best bet is the offsets for x/y/z/action are off.
Some help would be greatly appreciated.