Thread: Hack D/C-ing

Results 1 to 10 of 10
  1. #1
    FrozenKiller42's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Tired

    Question Hack D/C-ing

    Hi

    This is my code -

    Code:
    #include <windows.h>
    
    bool IsGameReadyForHook()
    {
    	if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
    		&& GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    		&& GetModuleHandleA( "CShell.dll"   ) != NULL )
    		return true;
    	return false;
    }
    
    void __cdecl PushToConsole( const char* szCommand )
    {
    	DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
    	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    	__asm
    	{
    		push szCommand;
    		call CONoff;
    		add esp, 4;
    	}
    }	
    
    void main()
    {
    	while(true)
    	{
    		//Chams
    		PushToConsole("SkelModelStencil -1");
    
    		//Spread
    		
    		PushToConsole("PerturbRotationEffect  0.000000" );
    		PushToConsole("PerturbIncreaseSpeed 0.000000" );
    		PushToConsole("PerturbWalkPercent 0.000000" );
    		PushToConsole("PerturbFiringIncreaseSpeed 0.000000" );
    		PushToConsole("PerturbRecoil 0.000000" );
    		PushToConsole("FireMovePerturb 0.000000" );
    		PushToConsole("ZoomedFireMoveDuckPerturb 0.000000" );
    		PushToConsole("ZoomedFireMovePerturb 0.000000" );
    		PushToConsole("ZoomedFireDuckPerturb 0.000000" );
    
    		//Reload
    		PushToConsole("ReloadSpeed 0.000000" );
    
    		//Fog
    		PushToConsole("FogEnable 1" );
    	}
    }
    
    DWORD WINAPI dwHackThread(LPVOID)
    {
    	while( !IsGameReadyForHook() )
    		Sleep(100);
    	main();
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    My hack D/C's after about one minute. Is it that I don't have the right addresses??

    While my hack is running though, every thing except instant-reload works, so yeah.

    P.S How can I set no recoil? It's not covered in my no spread.

    Sorry for nooby questions, maybe I should just stick to playing.

  2. #2
    harry8687's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    delete this :

    Quote Originally Posted by FrozenKiller42 View Post
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    And c+p This :

    Quote Originally Posted by FrozenKiller42 View Post
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp,4;
    }
    }
    now ur hack is working.. bye : )

  3. The Following User Says Thank You to harry8687 For This Useful Post:

    hgmf8124 (08-13-2010)

  4. #3
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    cougth LTC
    and most likelty u leeched

  5. #4
    FrozenKiller42's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    Hacks works now, ty harry.

    The original code is from the First Hack Tut. Am I not allowed to use that??

    How can I create no recoil?

  6. #5
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    Quote Originally Posted by FrozenKiller42 View Post
    Hacks works now, ty harry.

    The original code is from the First Hack Tut. Am I not allowed to use that??

    How can I create no recoil?
    ....

    adiies....

  7. #6
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Learn c++.......
    -Rest in peace leechers-

    Your PM box is 100% full.

  8. #7
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    add this
    Code:
    void __cdecl PushToConsole(const char* szCommand )
    {
    	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    	if( dwCShell != NULL )
    	{
    		DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
    		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    		__asm
    		{
    			push szCommand;
    			call CONoff;
    			add esp, 4;
    		}
    	}
    }
    use the thanks button

  9. #8
    FrozenKiller42's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    Quote Originally Posted by Zoom View Post
    Learn c++.......
    Just so you know, I do know C++ (using Ogre atm), I just don't know how to hack.

  10. #9
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by ^...,^ View Post
    .... /me can tell you its a pain the fuck backside
    Oh please you don't know 1/2 the languages in your signature and probably only got past the basics for the rest.

    BTW how's your "VIP" going ?

  11. #10
    mrsmexy95's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ahahha
    Posts
    25
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    Quote Originally Posted by ^...,^ View Post
    ummm like going to be the VIP CA coder hopefuly

    I LOVE YOU DAVE
    crash get on msn bro
    Its a dream right a dream

Similar Threads

  1. Pokemon World Online Lets ****ing Hack this ****!
    By Psychonewb in forum General Hacking
    Replies: 8
    Last Post: 07-31-2016, 07:18 AM
  2. Everyone who wants to post a ****ing hack READ!
    By M.P.G.H. Youtube in forum CrossFire Discussions
    Replies: 2
    Last Post: 06-15-2010, 07:55 PM
  3. D/C'ing With Hacks
    By Jayz34 in forum Combat Arms Help
    Replies: 4
    Last Post: 03-27-2010, 08:38 AM
  4. Constantly D/C ing with hacks?
    By yomomma12 in forum Combat Arms Help
    Replies: 9
    Last Post: 12-25-2009, 06:54 PM
  5. The Fuck. Ing. Hack. Shield!
    By StarloricVMC in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 01-12-2009, 05:03 PM