Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused

    help with my hack

    are you allowed to post your code cuz i just removed mine cuz i thought i would get banned




    #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* )( 0x007d9200 );
    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;
    }
    Last edited by yomo710; 08-23-2010 at 10:00 AM.
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  2. #2
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by yomo710 View Post
    are you allowed to post your code cuz i just removed mine cuz i thought i would get banned
    Yes your allowed to post code
    Dont ban me

  3. #3
    shadingkaito's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Right next to you.
    Posts
    81
    Reputation
    10
    Thanks
    5
    My Mood
    Angelic
    Yeah I think that's why they call this Coding/Source "Codes"
    -. Combat Arms .-
    NX Chams - 0%
    OPK - 0%
    Telekill - 0%
    Ghost Mode - 0%
    Glitcher - 0%
    Enemy Nametag - 0%
    Speed hack - 0%
    Jump hack - 0%
    Hover - 0%
    I love my epic fail list :]

  4. #4
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused
    ohh ok heres the 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* )( 0x007d9200 );
    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;
    }
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  5. #5
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Your problem is your using the wrong address with that method. What you are looking for is the "Lt Client" and no other external address type.

  6. #6
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused
    so you got the lt version
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  7. #7
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    It's in the stickies.

  8. #8
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused
    it doesnt seem to work
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  9. #9
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    If LTclient and it doesnt work, your PushToConsole method is patched.

  10. #10
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Your adding offset 208 when you shouldnt unless your using the LTClient.
    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

  11. #11
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused
    ok so how do i fix my push to console method or my lt cleint meathod
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  12. #12
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by yomo710 View Post
    ok so how do i fix my push to console method or my lt cleint meathod
    You learn C++

  13. #13
    yomo710's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United States
    Posts
    868
    Reputation
    9
    Thanks
    115
    My Mood
    Amused
    i mean do it quick lol
    I usually don't spend this much time on the internet, but when I do, I'm on some forum.
    Gift me credits or BTC! 1MktRupu3Goup79PrnYFW13bRi9wciiWWs


    Buying all starbucks accounts with currency!

  14. #14
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    i have an idea dont c+p my source you found it and decided to use it it is a simple hack

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  15. #15
    LightzOut's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    25
    Quote Originally Posted by speedforyou View Post
    i have an idea dont c+p my source you found it and decided to use it it is a simple hack
    Your source?? LOL.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] Need help with these hacks..
    By mgelmo11 in forum Vindictus Help
    Replies: 4
    Last Post: 07-28-2011, 10:50 PM
  2. [Help Request] Help with Crossfire hacks?
    By SkullistE1 in forum CrossFire Help
    Replies: 5
    Last Post: 07-13-2011, 02:09 PM
  3. [Help Request] i need help with the hack im using
    By kingster626 in forum Combat Arms Help
    Replies: 12
    Last Post: 06-18-2011, 10:15 PM
  4. [Help Request] I need Help With CAEU Hacks
    By ♪ςander!♪ in forum Combat Arms EU Help
    Replies: 3
    Last Post: 06-08-2011, 03:47 AM
  5. [Help Request] help with ca hacks
    By moises8 in forum Combat Arms Help
    Replies: 4
    Last Post: 05-10-2011, 05:55 PM