Hello, I've been trying to create a "hack" for educational purposes for World of Warcraft 3.3.5a.
The problem consist of whenever I try to write memory to specific adresses it doesn't change the value with my program, which is using BlackMagic to do this. But whenever I change these values with CheatEngine it works perfectly well.
The addresses in question is:
0xAA33DC - which is the address for jump gravity. I'm trying to set it with this function:
And I know it parses the float correctly, so that's not the problem. I use this with fall speed aswell, but that works perfectly well, which I find weird.Code://Jump Gravity wow.WriteFloat(0xAA33DC, float.Parse(textBox2.Text));
The second one is for wallclimb: 0xA37F0C - using this code:
I hope anyone can help me find my error - if you need any additional information, feel free to ask for it! - Thank you :-)Code:wow.WriteByte(0x00A37F0C, 0x00); wow.WriteByte(0x00A37F0C + 0x1, 0x00); wow.WriteByte(0x00A37F0C + 0x2, 0x00); wow.WriteByte(0x00A37F0C + 0x3, 0x00);