DIR Return Create A Forum - Home
---------------------------------------------------------
ThingsForum
HTML https://thingsforum.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: All cheating related stuff
*****************************************************
#Post#: 45--------------------------------------------------
Cod 4 wall hack esp
DIR By: Coplin
Date: April 5, 2014, 2:50 am
---------------------------------------------------------
been working on this for a day or two now i am proud to release
my first pub script :D enjoy
--- Code ---
#include "Header.h"
#include <Windows.h>
void Main_Thread( void ) {
while ( true )
{
if( clock() - i_OnePressTMR > 400 )
{
if( GetAsyncKeyState(VK_F1) )
{
i_OnePressTMR = clock();
b_ESPstatus = !b_ESPstatus;
if(b_ESPstatus) {
WriteToMemory( d_ESPadress, c_ESPopcode, 6
);
WriteToMemory( d_ESP2adress, c_ESP2opcode,
2 );
}else {
WriteToMemory( d_ESPadress,
c_ESPdefopcode, 6 );
WriteToMemory( d_ESP2adress,
c_ESP2defopcode, 2 );
}
}
else if(GetAsyncKeyState( VK_F2 ) )
{
i_OnePressTMR = clock();
b_WHstatus = !b_WHstatus;
if(b_WHstatus) {
WriteToMemory( d_WHadress, c_WHopcode, 2
);
}else{
WriteToMemory( d_WHadress, c_WHdefopcode,
2 );
}
}
}
}
}
bool WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID
lpReserved){
if(dwReason == DLL_PROCESS_ATTACH){
CreateThread(0, 0,
(LPTHREAD_START_ROUTINE)Main_Thread, NULL, NULL, NULL);
}
return TRUE;
}
--- End Code ---
#Post#: 46--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: FLUXIE
Date: April 5, 2014, 2:56 am
---------------------------------------------------------
Looks nice what is that hotkey......
#Post#: 53--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: Freakfrash
Date: April 5, 2014, 5:55 pm
---------------------------------------------------------
@FLUXXIE
Take a look into the source. You will see the GetAsyncKeyState
function. (GetAsyncKeyState(VK_F1)) the VK_"F1" is the F1
button.
#Post#: 54--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: Thing
Date: April 5, 2014, 6:13 pm
---------------------------------------------------------
--- Quote from: Freakfrash link ---
>
> @FLUXXIE
>
> Take a look into the source. You will see the GetAsyncKeyState
function. (GetAsyncKeyState(VK_F1)) the VK_"F1" is the F1
button.
>
--- End Quote ---
You can quote ;)
#Post#: 55--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: Freakfrash
Date: April 5, 2014, 7:05 pm
---------------------------------------------------------
Does not matter ;)
Just wanted to answer his sentence
#Post#: 56--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: FLUXIE
Date: April 5, 2014, 8:05 pm
---------------------------------------------------------
Well i feel stupid... fuck
#Post#: 81--------------------------------------------------
Re: Cod 4 wall hack esp
DIR By: Coplin
Date: April 8, 2014, 9:15 am
---------------------------------------------------------
Thank you freak for answering him for me, i didn't get a chance
to check up on my post feel free to pm me about any errors
related ot this
*****************************************************
Page 1 of 1