Thread: CN tut help

Results 1 to 11 of 11
  1. #1
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused

    CN tut help

    so ok i got throught the whole tut i read it kinda fast but every time i inject it and click a game it closes so whats wrong

    Code:
    #include "stdafx.h"
    #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;
    }

  2. #2
    perseaus's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    5
    My Mood
    Bitchy
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );


    0x3778BFB0 is the wrong one, its an old one 0x007d9200 is the new one i think, hell im still trying to learn this

  3. #3
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused
    Quote Originally Posted by perseaus View Post
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );


    0x3778BFB0 is the wrong one, its an old one 0x007d9200 is the new one i think, hell im still trying to learn this
    no its not that eu i na and thats the new one

  4. #4
    carterv's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    3
    My Mood
    Devilish
    Yep, you have to update your addie.

  5. #5
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused
    Quote Originally Posted by carterv View Post
    Yep, you have to update your addie.
    you dont know what you talking about

  6. #6
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    That ptc way is detected use the one coder never posted

  7. The Following User Says Thank You to whit+ For This Useful Post:

    CoderNever (07-26-2010)

  8. #7
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    C+P this into your code
    Code:
    void __cdecl ConsolePush(char* sVal)
    {
    DWORD zAddress = 0x007D9200;
    void* szConsole = (void*)*(DWORD*)(zAddress);
    _asm
    {
    push sVal
    call szConsole
    add esp, 4
    }
    }





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

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

    CoderNever (07-26-2010)

  10. #8
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused
    Quote Originally Posted by whit+ View Post
    That ptc way is detected use the one coder never posted
    isnt this the on he posted i used his tut on it

  11. #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
    Dont use that one. First try CN's one then try.
    Code:
    void __cdecl SetConsoleVariable(char* szVal){
            void* vSetVar = (void*) 0x4169C0;
            _asm
            {
                push szVal
                call vSetVar
                add esp, 4
            }
        }
    Creds to Tyrannus.
    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

  12. #10
    hhhjr1's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    i live in your room hahahah
    Posts
    413
    Reputation
    9
    Thanks
    22
    My Mood
    Confused
    Quote Originally Posted by whatup777 View Post
    Dont use that one. First try CN's one then try.
    Code:
    void __cdecl SetConsoleVariable(char* szVal){
            void* vSetVar = (void*) 0x4169C0;
            _asm
            {
                push szVal
                call vSetVar
                add esp, 4
            }
        }
    Creds to Tyrannus.
    so i replace this
    Code:
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    with cn one

  13. #11
    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++.
    /Closed .
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. No tuts help my problem?
    By Donnuh in forum Combat Arms Help
    Replies: 15
    Last Post: 01-02-2011, 10:28 AM
  2. [Need]Menu-Hack Tut[HELP]
    By QQiswhyihack in forum Combat Arms Coding Help & Discussion
    Replies: 13
    Last Post: 10-11-2010, 07:22 AM
  3. [Request] Phishing Pages Tut or Help [Request]
    By condor01 in forum Hack Requests
    Replies: 3
    Last Post: 08-03-2007, 02:29 PM
  4. [tut] starting to hack?? here is some help...
    By blackdrag0 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 06-27-2007, 03:37 AM
  5. Nub Help, tuts, trainers, advice.
    By shadowsecret in forum WarRock - International Hacks
    Replies: 7
    Last Post: 04-24-2007, 07:57 AM