Thread: Dc'ing help

Results 1 to 9 of 9
  1. #1
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed

    Dc'ing help

    I had fixed one problem now when i inject it runs good intell there is the little running dude on ca loading screan then it dcs me
    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* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }	
    void main()
    {
    while(true)
    {
    PushToConsole("SkelModelStencil 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;
    }
    ps i am still learning c++
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  2. #2
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    Your pointer is wrong. It isn't "3778BFB0", it's "377ED910".

  3. #3
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Rofl you removed the 90% complete from your signature I see

  4. #4
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Even know your problem has nothin to do with c++..But here some advice learn c++ before you try to make hack...

    Trust Me this is best advice your goin to get..

  5. #5
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    That's not disconnecting, more like crashing.
    Code:
    Replace DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    With
    Code:
    DWORD *LTClient = ( DWORD* )(0x377ED910 );
    Dont ban me

  6. #6
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    Grr. I feel I will be the only ASM hacker here lol. I think I'll make history (j/k).

  7. #7
    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 Dewerong View Post
    Grr. I feel I will be the only ASM hacker here lol. I think I'll make history (j/k).
    Ya nab get wit teh program
    /yea

  8. #8
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Dewerong View Post
    Grr. I feel I will be the only ASM hacker here lol. I think I'll make history (j/k).
    Wanna Cookie../

  9. #9
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by whit View Post


    Wanna Cookie../
    I do. Lol. /
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

Similar Threads

  1. [Help Request] Ajuda / Help
    By - Battery' in forum Combat Arms BR Coding Help
    Replies: 3
    Last Post: 04-22-2011, 07:15 PM
  2. [Help Request] Help my!
    By Windowns7 in forum Combat Arms BR Coding Help
    Replies: 2
    Last Post: 04-18-2011, 01:41 PM
  3. Want a clean computer for Clan TV'ing? I might be able to help.
    By Jabuuty671 in forum Combat Arms Tutorials
    Replies: 34
    Last Post: 12-18-2010, 08:57 PM
  4. [Help] Menu Dc'ing
    By RageKnight in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 14
    Last Post: 06-26-2010, 06:30 PM
  5. help with resize ing
    By hopefordope in forum Visual Basic Programming
    Replies: 7
    Last Post: 06-04-2010, 12:24 PM