Hello, fellow hackers. I've been testing base for my bot and done some DLL injections, but for some reason i can't get my Framescript_Execute to work. I got my offsets from this forum by searching. I'm working with 3.3.5 12340.
This is my declaration:
Code:
auto Framescript_Execute = reinterpret_cast<UINT32(__cdecl *)(const char *, const char *, int)>(0x00819210);
I call it in my DllMain and i can clearly see that it gets called by my module and i can follow every step in IDA but not getting the results i want.
I call the function like this:
Code:
Framescript_execute("DoEmote(\"cry\");", "cry.lua", 0);
I havent yet tried detouring the wow functions.
Am i heading wrong way? Did I understand the concept wrong?
Thanks.
Offset credit to Nesox.