Hey guys! I'm totally new on releasing public cheats, So i'm sorry if I do any mistake.
Anyways, This is my multihack.
This is version 0.1 so things might be buggy and there is a alot of features comming in the future :P
For trigger: Hold mouse button 5.
For BHOP: Hold space
For RCS: Just shoot, The rcs will do the recoil controlling.
. @ghostmanlinkan
Some strings are encrypted, send me the decrypted file over PM.
File is clean, Approved.
Oh and some improvements:
No need for 5 different threads for a cheat with 3 functions, instead just merge them together and time them by using GetTickCount (bit slower) or make your own timer class that is more accurate and or uses Deltatime (Much easier to work with deltatime).
Dont hardcode your hotkeys, just loop through all the keys and check if its down, if its down then select that one (Make sure its in some kind of a loop)
Pseudo:
Code:
while(true) {
for loop
if keystate(loopcount)
return loopcount; // or break depending on how you do it
}