Okay, I actually got tired of keeping alt+tabing my Win32 application to change the settings of my hacks, so I made this hook.
It hooks Present and DrawIndexedPrimitive(Not really needed, but its cool). You can execute memory functions INSIDE conquer. Meaning you can use your code anywhere you want.
Screens:
Menu:
Okay, that looks alright, but what can it do what others can't? Well hooking DrawIndexedPrimitive gives us a privilege to do this:
Which looks cool, but is totally useless. Lol.
Anyway, this is called inline Assembly: (C++)
Code:
_declspec(naked) void Disconnect(){
__asm{
// Full credits to IAmHawtness
mov ecx,0x926EC8
mov eax,0x6AE042
call eax
ret
}
}
I might release the source later on, still need some things to fix.






