Page 1 of 5 123 ... LastLast
Results 1 to 15 of 65
  1. #1
    V I's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Jewish land
    Posts
    1,440
    Reputation
    272
    Thanks
    2,442
    My Mood
    Aggressive

    WE11NGTON D3D9 BASE DIP

    Code:
    #include <windows.h>
    #include <d3d9.h>
    #include <d3dx9.h>
    
    #pragma comment(lib, "d3d9.lib")
    #pragma comment(lib, "d3dx9.lib")
    
    DWORD DIPD3D9, retDIPD3D9;
    
    __declspec( naked ) HRESULT WINAPI DIPMidfunction( )
    {
    	static LPDIRECT3DDEVICE9 pDevice;
    
    	__asm
    	{
    		MOV EDI, EDI
    		PUSH EBP
    		MOV EBP, ESP
    		MOV EAX, DWORD PTR SS:[EBP + 0x8]
    		MOV DWORD PTR DS:[pDevice], EAX
    	}
    
    	pDevice->SetRenderState( D3DRS_ZENABLE, D3DZB_FALSE );
    	
    	__asm
    	{
    		POP EBP
    		JMP retDIPD3D9
    	}
    }
    
    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 );
    }
    
    BOOL bCompare( CONST BYTE *pData, CONST BYTE *bMask, CONST CHAR *szMask )
    {
    	for( ; *szMask; ++szMask, ++pData, ++bMask )
    		if( *szMask == 'x' && *pData != *bMask )   
    		return false;
    	
    	return ( *szMask ) == NULL;
    }
    
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	for( DWORD i = 0; i < dwLen; i++ )
    		if( bCompare( ( BYTE * )( dwAddress + i ), bMask, szMask ) )  
    		return ( DWORD )( dwAddress + i );
    	
    	return 0;
    }
    
    DWORD WINAPI StartRoutine( LPVOID )
    {
        while( TRUE )
        {
    		DWORD hD3D = ( DWORD )LoadLibrary( "d3d9.dll" );
    
    		if( !DIPD3D9 )
    		{
    			// Windows XP
    			DIPD3D9 = FindPattern( hD3D,
    				0x128000,
    				( PBYTE )"\x8B\xFF\x55\x8B\xEC\x5D\xE9\x00\x00\x00\x00\xCC\xCC\xCC\xCC\xCC\x8B\xFF\x55\x8B\xEC\x51",
    				"xxxxxxx????xxxxxxxxxxx" );
    			if( DIPD3D9 )
    			{
    				retDIPD3D9 = DIPD3D9 + 0x6;
    				DetourCreate( ( PBYTE )DIPD3D9, ( PBYTE )DIPMidfunction, 5 );
    			}
    		}
    
    		if( !DIPD3D9 )
    		{
    			// Windows 7
    			DIPD3D9 = FindPattern( hD3D,
    				0x128000,
    				( PBYTE )"\xC3\x90\x90\x90\x90\x90\x8B\xFF\x55\x8B\xEC\x5D\xEB\x05\x90\x90\x90\x90\x90\x8B\xFF\x55\x8B\xEC\x6A\xFF",
    				"xxxxxxxxxxxxxxxxxxxxxxxxxx" );
    			if( DIPD3D9 )
    			{
    				retDIPD3D9 = ( DIPD3D9 + 0x6 ) + 0x6;
    				DetourCreate( ( PBYTE )( DIPD3D9 + 0x6 ), ( PBYTE )DIPMidfunction, 5 );
    			}
    		}
        	}
     
        	return 0;
    }
    
    BOOL WINAPI DllMain( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    { 
    	if( dwReason == DLL_PROCESS_ATTACH )
    	{
    		DisableThreadLibraryCalls( hDll );
    		MessageBox( 0, "WE11ington", "HOOK DIP", 0 );
            	CreateThread( 0, 0, (LPTHREAD_START_ROUTINE)StartRoutine, 0, 0, 0 );		
    	}
    
    	return TRUE;
    }
    i take no credits , the credits is in dll main

    / 812034128421 hack in cf section soon


    ---------- Post added at 02:01 PM ---------- Previous post was at 01:58 PM ----------

    Screen shot in-game tested ( 1 / 7 / 2013 )



    ---------- Post added at 02:05 PM ---------- Previous post was at 02:01 PM ----------

    LEEEEEEEEEECH WAR STARTED WITH KAREEM( pro vip coder ) AND RULLEZ LMAO
    for noobs all credits go to : WE11NGTON i already said that
    Last edited by V I; 01-07-2013 at 12:27 PM.

  2. The Following 6 Users Say Thank You to V I For This Useful Post:

    6ixth (05-11-2013),dreek1 (01-07-2013),Hacker Fail (01-08-2013),IliasR (05-20-2013),Jefjet11 (01-14-2013),remzkee0903 (01-08-2013)

  3. #2
    [H]aaBX's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    277
    Reputation
    23
    Thanks
    1,085
    My Mood
    Asleep
    Quote Originally Posted by MC567 View Post
    LEEEEEEEEEECH WAR STARTED WITH KAREEM( pro vip coder ) AND RULLEZ LMAO
    hahaha
    there are much more

    Thanks @Scynix for this awesome picture
     


  4. The Following 3 Users Say Thank You to [H]aaBX For This Useful Post:

    Intellectual (01-08-2013),Scynix (01-07-2013),V I (01-07-2013)

  5. #3

  6. #4
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    @MC567 go to sleep and get lost , you are just puted on the mpgh's black list .......... Next time give atleast credit's when you stoll somebody's work.

    I am right now sending a complaint againt's you so have fun stoling other's stuff
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  7. #5
    3D's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In The World :P
    Posts
    1,007
    Reputation
    134
    Thanks
    14,169
    My Mood
    Amazed
    Iam Sure you steal it From any where
    such as what u do before 2 weeks
    Noob Stealer

  8. #6
    dicky88smd's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    205
    Reputation
    10
    Thanks
    62
    My Mood
    Busy
    will not take a long time before its patched again, why u post this ?

    <=======================================>
    PRESS THANK'S IF I HELP YU
    <=======================================>
    NO HACK NO FUN
    <=======================================>
     

    - Make Hack Crossfire
    - Make 30 Function's
    - Make Weapon Logger
    - Make Value Logger
    - Make Addy Logger
    - Make Public Hack
    - Make Bypass Xtrap
    - Make Bypass Client Error
    - Make D3D
    - Make Aimbot


     

    => Bandi12
    => Giniyat101
    => UltraPGNoob
    => Swag
    => MPGH Minion

  9. The Following User Says Thank You to dicky88smd For This Useful Post:

    BEBOSAMIR (07-09-2013)

  10. #7
    3D's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In The World :P
    Posts
    1,007
    Reputation
    134
    Thanks
    14,169
    My Mood
    Amazed
    Quote Originally Posted by MC567 View Post

    It's we11 base and i gave him all credits , bandi is mad for no reason
    Big stealer lollllllllllllllllllllllllllllllllllllllllllllllll llllllllllllllllllls
    https://www.mpgh.net/forum/242-crossf...ld-base-d.html

  11. #8
    [H]aaBX's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    277
    Reputation
    23
    Thanks
    1,085
    My Mood
    Asleep
    Are you kidding meh ?
    He gave Credits to the We11ngton so don't cry

    Thanks @Scynix for this awesome picture
     


  12. The Following 2 Users Say Thank You to [H]aaBX For This Useful Post:

    Intellectual (01-08-2013),sobasoba13 (01-02-2018)

  13. #9
    lolman963's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    628
    Reputation
    10
    Thanks
    2,434
    My Mood
    Amazed
    Can you explain me what is Zombie OPK in ur signature?
    Quote Originally Posted by derh.acker View Post
    Nothing

  14. #10
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    @Scynix if you wanna know my hack will still work bk i don't use this hook , i am mad bk of stealing
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  15. #11
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    Wellington is a ****** XD





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  16. The Following 8 Users Say Thank You to Dave84311 For This Useful Post:

    3D (01-07-2013),Dead(H)ell (01-08-2013),giniyat101 (01-13-2013),Intellectual (01-08-2013),rkN (01-08-2013),Ryuesi (01-08-2013),Scynix (01-08-2013),[H]aaBX (01-07-2013)

  17. #12
    lolman963's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    628
    Reputation
    10
    Thanks
    2,434
    My Mood
    Amazed
    What tha hell its awesome
    You do it?
    Quote Originally Posted by derh.acker View Post
    Nothing

    _________
    @lolman963 : Zombie OPK virtually teleports all zombies in front of you and you can kill them.

  18. #13
    dakr54's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    396
    Reputation
    16
    Thanks
    669
    Quote Originally Posted by Dave84311 View Post
    Wellington is a ****** XD
    how so? i don't really like all the hostility here.. but i assume you're joking

  19. #14
    |Zeus|'s Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Heaven
    Posts
    94
    Reputation
    10
    Thanks
    573
    My Mood
    Devilish
    [I]
    Quote Originally Posted by REALITY™ View Post
    Code:
    #include <windows.h>
    #include <d3d9.h>
    #include <d3dx9.h>
    
    #pragma comment(lib, "d3d9.lib")
    #pragma comment(lib, "d3dx9.lib")
    
    DWORD DIPD3D9, retDIPD3D9;
    
    __declspec( naked ) HRESULT WINAPI DIPMidfunction( )
    {
    	static LPDIRECT3DDEVICE9 pDevice;
    
    	__asm
    	{
    		MOV EDI, EDI
    		PUSH EBP
    		MOV EBP, ESP
    		MOV EAX, DWORD PTR SS:[EBP + 0x8]
    		MOV DWORD PTR DS:[pDevice], EAX
    	}
    
    	pDevice->SetRenderState( D3DRS_ZENABLE, D3DZB_FALSE );
    	
    	__asm
    	{
    		POP EBP
    		JMP retDIPD3D9
    	}
    }
    
    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 = 0x90;
    	VirtualProtect( src, len, dwBack, &dwBack );
    
    	return ( jmp - len );
    }
    
    BOOL bCompare( CONST BYTE *pData, CONST BYTE *bMask, CONST CHAR *szMask )
    {
    	for( ; *szMask; ++szMask, ++pData, ++bMask )
    		if( *szMask == 'x' && *pData != *bMask )   
    		return false;
    	
    	return ( *szMask ) == NULL;
    }
    
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	for( DWORD i = 0; i < dwLen; i++ )
    		if( bCompare( ( BYTE * )( dwAddress + i ), bMask, szMask ) )  
    		return ( DWORD )( dwAddress + i );
    	
    	return 0;
    }
    
    DWORD WINAPI StartRoutine( LPVOID )
    {
        while( TRUE )
        {
    		DWORD hD3D = ( DWORD )LoadLibrary( "d3d9.dll" );
    
    		if( !DIPD3D9 )
    		{
    			// Windows XP
    			DIPD3D9 = FindPattern( hD3D,
    				0x128000,
    				( PBYTE )"\x8B\xFF\x55\x8B\xEC\x5D\xE9\x00\x00\x00\x00\xCC\xCC\xCC\xCC\xCC\x8B\xFF\x55\x8B\xEC\x51",
    				"xxxxxxx????xxxxxxxxxxx" );
    			if( DIPD3D9 )
    			{
    				retDIPD3D9 = DIPD3D9 + 0x6;
    				DetourCreate( ( PBYTE )DIPD3D9, ( PBYTE )DIPMidfunction, 5 );
    			}
    		}
    
    		if( !DIPD3D9 )
    		{
    			// Windows 7
    			DIPD3D9 = FindPattern( hD3D,
    				0x128000,
    				( PBYTE )"\xC3\x90\x90\x90\x90\x90\x8B\xFF\x55\x8B\xEC\x5D\xEB\x05\x90\x90\x90\x90\x90\x8B\xFF\x55\x8B\xEC\x6A\xFF",
    				"xxxxxxxxxxxxxxxxxxxxxxxxxx" );
    			if( DIPD3D9 )
    			{
    				retDIPD3D9 = ( DIPD3D9 + 0x6 ) + 0x6;
    				DetourCreate( ( PBYTE )( DIPD3D9 + 0x6 ), ( PBYTE )DIPMidfunction, 5 );
    			}
    		}
        	}
     
        	return 0;
    }
    
    BOOL WINAPI DllMain( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    { 
    	if( dwReason == DLL_PROCESS_ATTACH )
    	{
    		DisableThreadLibraryCalls( hDll );
    		MessageBox( 0, "WE11ington", "HOOK DIP", 0 );
            	CreateThread( 0, 0, (LPTHREAD_START_ROUTINE)StartRoutine, 0, 0, 0 );		
    	}
    
    	return TRUE;
    }


    i take no credits , the credits is in dll main

    / 812034128421 hack in cf section soon


    ---------- Post added at 02:01 PM ---------- Previous post was at 01:58 PM ----------

    Screen shot in-game tested ( 1 / 7 / 2013 )



    ---------- Post added at 02:05 PM ---------- Previous post was at 02:01 PM ----------

    LEEEEEEEEEECH WAR STARTED WITH KAREEM( pro vip coder ) AND RULLEZ LMAO
    for noobs all credits go to : WE11NGTON i already said that


    Good .

  20. #15
    remzkee0903's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Philippines
    Posts
    294
    Reputation
    11
    Thanks
    368
    My Mood
    Angelic
    Nc.. We11ingTon is a silent master coder. Thanks for making it to public.. I will used this for educational purpose only.
    -SiLent But DeadLy-

Page 1 of 5 123 ... LastLast

Similar Threads

  1. [Help] Anyone have d3d9 base?
    By roabx1 in forum WarRock Discussions
    Replies: 12
    Last Post: 09-23-2010, 07:18 AM
  2. Magicman's D3D9 Base v1.0
    By Mr.Magicman in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 32
    Last Post: 08-31-2010, 12:46 PM
  3. D3D9 Base
    By n4n033 in forum WarRock Hack Source Code
    Replies: 17
    Last Post: 08-22-2010, 09:07 AM
  4. Magicman's D3D9 Base v1.0
    By Mr.Magicman in forum Combat Arms EU Hack Coding/Source Code
    Replies: 9
    Last Post: 08-02-2010, 09:29 AM
  5. [Help] D3D8 or D3D9 based?!
    By HazXoD3D in forum WarRock - International Hacks
    Replies: 3
    Last Post: 10-13-2009, 11:43 AM