Results 1 to 15 of 15
  1. #1
    mihranss's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    8
    My Mood
    Innocent

    Post [Help] Hack Sources Code

    Look at this link on how to make your first hack --> [RELEASE/INFO] CN Tutorial - Making your first CA Hack!

    Well I've done all of the things that they've told me. So I click the Build>Build Solution and this what it came up.



    Please tell me anything that would work, or at least try what I did. Copy the last
    step they told you and click Build and tell me what comes up for you. Thank you.

    I'm a NOOB

    But I call myself -->

  2. #2
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    lol wth are u doing ? read it again





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  3. #3
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Stop Trying Too Put The Code Ina Console Project..

  4. #4
    wicho_koz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    193
    Reputation
    12
    Thanks
    52
    My Mood
    Shocked
    is VB?? or c++?

  5. #5
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by wicho_koz View Post
    is VB?? or c++?
    OBVIOUS C++ IS obvious

  6. #6
    mihranss's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    8
    My Mood
    Innocent
    Quote Originally Posted by GodHack2 View Post
    lol wth are u doing ? read it again
    Read what again? I read everything and at the last part it says "the
    entire thing should look like this" So I copy + paste and when I build. That what it comes up.


    Quote Originally Posted by whit View Post
    Stop Trying Too Put The Code Ina Console Project..
    It's in DLL>Empty Project
    I'm a NOOB

    But I call myself -->

  7. #7
    eXaLtIc™'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    203
    Reputation
    10
    Thanks
    144
    Its C++ / / / / / /

  8. #8
    wicho_koz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    193
    Reputation
    12
    Thanks
    52
    My Mood
    Shocked

    Talking lol hahaha

    This is the complete database, paste it the way it is
    (The base has no errors)

    [php]#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;
    }[/php]

  9. #9
    eXaLtIc™'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    203
    Reputation
    10
    Thanks
    144
    Change teh ltc client its old

  10. #10
    mihranss's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    8
    My Mood
    Innocent
    Quote Originally Posted by wicho_koz View Post
    This is the complete database, paste it the way it is
    (The base has no errors)

    [php]#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;
    }[/php]
    I copy + paste it and it still says the same as the image on my 1st
    post. Do I need to download something? Did you on Microsoft Visual C++ 2008?

    Quote Originally Posted by eXaLtIc™ View Post
    Change teh ltc client its old
    Tell me the new ltc Client?
    I'm a NOOB

    But I call myself -->

  11. #11
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by wicho_koz View Post
    This is the complete database, paste it the way it is
    Since when was a hotkey hack base a database?
    :O

  12. #12
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    win32 project, dll, empty project pls

  13. #13
    wicho_koz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    193
    Reputation
    12
    Thanks
    52
    My Mood
    Shocked
    created the file. cpp?

    is on Microsoft Visual C++ 2008?

  14. #14
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by mihranss View Post
    Look at this link on how to make your first hack --> [RELEASE/INFO] CN Tutorial - Making your first CA Hack!

    Well I've done all of the things that they've told me. So I click the Build>Build Solution and this what it came up.



    Please tell me anything that would work, or at least try what I did. Copy the last
    step they told you and click Build and tell me what comes up for you. Thank you.

    You're currently using a Console project. This code isn't for a console - it's for a program library !

  15. #15
    Xlilzoosk8rX's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    the-ville, PA
    Posts
    358
    Reputation
    24
    Thanks
    53
    my god.
    open C++
    create a new project.
    win32>dynamic link library (dll)
    empty project.
    switch to multi byte.
    set the include and lib directories in your project settings.
    write code
    profit? (not really because you didnt learn anything xcept how to beg)
    then inject into game

Similar Threads

  1. (help) How do i use the hack source codes
    By khaisbeast in forum Combat Arms Coding Help & Discussion
    Replies: 4
    Last Post: 01-29-2011, 10:01 PM
  2. Hack source code cpp
    By carlosmamoura in forum C++/C Programming
    Replies: 16
    Last Post: 01-14-2010, 08:27 PM
  3. <releasing 2 morrow> new opk hack ~source code~ C++
    By pikamew4 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 12-02-2009, 02:59 PM
  4. hey all you noobs free hack source codes here!!
    By cnttuchme in forum C++/C Programming
    Replies: 6
    Last Post: 10-22-2009, 05:52 PM
  5. Help with source code! Easy fast scope bot!
    By Zoom in forum C++/C Programming
    Replies: 22
    Last Post: 08-21-2009, 09:06 PM