#define ADR_CLIENT 0x004F9E00
cHacks Hackz;
Hacks Hack;
void cHacks::PushToConsole(const char *pCommand)
{
if(GetModuleHandleA("cShell.dll"))
{
void* console = ( void* ) ADR_CLIENT;
__asm
{
push pCommand
call console
add esp, 0x4
}
}
}
void cHacks::RenderHacks(LPDIRECT3DDEVICE9 Device)//Renders your hacks
{
switch ( Hack.cross ) //Draws Simple crosshair when Hack.cross equals the case
{
case 1:
Tools.xhair(Device, Red);//Red Crosshair FTW
break;
case 2:
Tools.xhair(Device, Blue);//Blue GAY!!!
break;
}
switch( Hack.test1 )
{
//off
case 0:
Hackz.PushToConsole( "SkelModelStencil 0" );
break;
//on
case 1:
Hackz.PushToConsole( "SkelModelStencil 1" );
}
}

