PatchedxKickHack V13 - New D3D Features

Posts 115 of 41 · Page 1 of 3
xKickHack V13 - New D3D Features
Features
Wallhack
Chams
Overlay Chams


Light Chams
Ghost Chams
Phantom Chams
Full bright
Player Wireframe
Player Point Mode
Crosshair Overlay
No Fog


HOTKEYS

Wallhack(F3 or Numpad0)

Chams
(F4 or Numpad1)
Types: (click for change)
Wall Chams
Overlay Chams
Light Chams

F5 or Numpad2 = Chams color
Colors:
Red
Green
Blue
Black
Yellow


Full Bright (F6 or Numpad3)

Phantom Chams (F7 or Numpad4)



Ghost Chams (F8 or Numpad5)

Crosshair Overlay
F9 or Numpad6 = Activate and change colors
Colors:
Red
Green
Blue
Black
Yellow


Player Wireframe (F10 or Numpad7)

Player Point Mode
(F11 or Numpad8)


No Fog (F12 or Numpad9)

INJECTOR TO USE

http://www.mpgh.net/forum/292-combat-arms-spammers-injectors-multi-tools/505430-blackinject-v1-7-simple-sexygui-animations-sounds.html

HOW TO USE
Extract the hack
Inject with any undetected injector (see up)
Click hotkeys (see up)

SCREENSHOT


xKickHack V13_mpgh.net.rar4 KB · 679 downloads Scanning…
/Approved.

I just crashed crossfire by random pressing F1 - F9
is this working in philippines????plzzzz reply ASAP
I dont know where u can upload hack this game CrossFire...But please write ( for EU or NA ) at TOPIC...I dont want to download and test with dont know where it is work ... ( sorry bad english )..
Thanks

I'm not sure if post my Semi VIP or VIP Hack, maybe i'll do if i become contributor


---------- Post added at 12:58 PM ---------- Previous post was at 12:54 PM ----------

Quote Originally Posted by genobalajadia View Post
is this working in philippines????plzzzz reply ASAP
Only for NA (for now)
good job
huhuhuhu there's no more cheat in ph.... tzk....
XTrap Error FCK THIS XTRAP i need Anti Xtrap
GJ Will Try It Now
bro plz make loader not with injector xD
sir....plz make cheat for ph..i beg. you...
@xKickAs You're not giving proper credits but we11ington doesn't care anyway. When z8 patched this, i want to see how you will update it leecher.

Code:
596F19F7   50               PUSH EAX
596F19F8   6A 08            PUSH 8
596F19FA   68 0D494B00      PUSH 4B490D
596F19FF   FFD7             CALL EDI
596F1A01  ^E9 6DFFFFFF      JMP CSHell.596F1973
596F1A06   CC               INT3
596F1A07   CC               INT3
Code:
596F1000   3E:8B10          MOV EDX,DWORD PTR DS:[EAX]
596F1003   3E:8B92 48010000 MOV EDX,DWORD PTR DS:[EDX+148]
596F100A   3E:A3 7C436F59   MOV DWORD PTR DS:[596F437C],EAX
596F1010   60               PUSHAD
Quote Originally Posted by deathreap28 View Post
Code:
#include <windows.h>
#include <d3d9.h>
#include <d3dx9.h>

#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")

// NUMPAD1 => On/Off chams.
// NUMPAD2 => Change colors.

#define DIPEngine 0x004B490D
DWORD retDIPEngine = ( DIPEngine + 0x8 );

INT chams;
INT color;

#define Red     D3DCOLOR_ARGB( 255, 255, 000, 000 )
#define Green   D3DCOLOR_ARGB( 255, 000, 255, 000 )
#define Blue    D3DCOLOR_ARGB( 255, 000, 000, 255 )
#define Black   D3DCOLOR_ARGB( 255, 000, 000, 000 )

__declspec( naked ) HRESULT WINAPI DIPMidfunction( )
{
    static LPDIRECT3DDEVICE9 pDevice;

    __asm
    {
        MOV EDX, DWORD PTR DS:[EAX]
        MOV EDX, DWORD PTR DS:[EDX + 0x148]
        MOV DWORD PTR DS:[pDevice], EAX
        PUSHAD
    }

    if( GetAsyncKeyState(VK_NUMPAD1)&1 )
        chams = !chams;
 
    if( GetAsyncKeyState(VK_NUMPAD2)&1 )
        color++;
    
    if( color > 4 )
        color = 0;
    
    if( chams )
    {
        pDevice->SetRenderState( D3DRS_ZENABLE, D3DZB_FALSE );
        if( color == 1 ) pDevice->SetRenderState( D3DRS_AMBIENT, Red   );
        if( color == 2 ) pDevice->SetRenderState( D3DRS_AMBIENT, Green );
        if( color == 3 ) pDevice->SetRenderState( D3DRS_AMBIENT, Blue  );
        if( color == 4 ) pDevice->SetRenderState( D3DRS_AMBIENT, Black );
    }

    __asm
    {
        POPAD
        JMP retDIPEngine
    }
}

void *DetourCreate( BYTE *src, const BYTE *dst, const int len )
{
    BYTE *jmp =( BYTE * ) malloc( len + 5 );
    DWORD dwBack;

    VirtualProtect( src, len, PAGE_READWRITE, &dwBack );
    memcpy( jmp, src, len );    
    jmp += len;
    jmp[0] = 0xE9;
    *( DWORD * )( jmp + 1 ) = ( DWORD )( src + len - jmp ) - 5;

    src[0] = 0xE9;
    *( DWORD * )( src + 1 ) = ( DWORD )( dst - src ) - 5;
    for( int i = 5; i < len; i++ )
        src[i] = 0x90;
    VirtualProtect( src, len, dwBack, &dwBack );

    return( jmp - len );
}

DWORD WINAPI StartRoutine( LPVOID )
{
    while( TRUE )
    {
        if( memcmp( ( void * )DIPEngine, ( void * )( PBYTE )"\x8B\x10", 2 ) == 0 )
        {
            Sleep(200);
            DetourCreate( ( PBYTE )DIPEngine, ( PBYTE )DIPMidfunction, 8 );
        }
    }
 
    return 0;
}

BOOL WINAPI DllMain( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{ 
    if( dwReason == DLL_PROCESS_ATTACH )
    {
        DisableThreadLibraryCalls( hDll );
        MessageBox( 0, "Hook DIP Engine", "Crossfire", 0 );
        CreateThread( 0, 0, (LPTHREAD_START_ROUTINE)StartRoutine, 0, 0, 0 );
    }
 
    return TRUE;
}
Credits:
Detour -> Azorbix
Midfunction -> Shadow_
Me -> WE11ington
Quote Originally Posted by xKickAss View Post

I'm not sure if post my Semi VIP or VIP Hack, maybe i'll do if i become contributor
[/FONT]
Everyone here knew you get contributor title after you release hack not before.

VIP my ass.
All Delete .txt files computer/c:/crossfire/xtrap/delete all .txt files and u will not get xtrap error
Posts 115 of 41 · Page 1 of 3
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?