Results 1 to 10 of 10
  1. #1
    pikamew4's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Canada
    Posts
    157
    Reputation
    10
    Thanks
    37
    My Mood
    Devilish

    Exclamation [HELP] Where can I learn C++

    Okay, guys, recently I've been interested in bases, and code. I still can understand certain code and function, but I am interested in learning it all. Please tell me if any one is interested on being my teacher or finding me a manual, online or whatever..

    Please PM me or reply I really dont care, I just want to make hax =P!!

    ]This will be my future MPGH user name
    [MPGH]pikamew4

    w000tttt!!!!!

    2doo-list

    {become a mod on mpgh}[]
    {become admin on MPGh}[]
    {be kicked from combat arms}[]
    {make a private VIP hack with telekill for myslf}mad:
    {meet Dave on MPGH}[]
    {learn c++}
    {become a newb on MPGH}[]
    {become a member on MPGH}[]
    {**** up my profile with a lame picture}[]
    -------------------------------
    Starting PHOTOSHOP CS5

    [IMG]https://i1141.photobucke*****m/albums/n593/pikamew4/MPGH.jpg?t=1286152941[/IMG]

    Status: Working On Pub menu hack with OPK 0_o!!


  2. #2
    therofl's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    76
    Reputation
    9
    Thanks
    9
    You could start by visiting the C++ section...

  3. #3
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    first post
    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 dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    	if( dwCShell != NULL )
    	{
    		DWORD *LTClient = ( DWORD* )( 0x377ED910 );
    		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    		__asm
    		{
    			push szCommand;
    			call CONoff;
    			add esp, 4;
    		}
    	}
    }
     
    void main()
    {
    while(true)
    {
    put PTC's here
    
    
    }
    }
    DWORD WINAPI dwHackThread(LPVOID) {
    while( !IsGameReadyForHook() )
    Sleep(300);
    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;
    }
    good luck

    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 =

  4. #4
    -InFinity's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Dominican Republic.
    Posts
    1,198
    Reputation
    -49
    Thanks
    63
    My Mood
    Chatty
    Quote Originally Posted by pikamew4 View Post
    Okay, guys, recently I've been interested in bases, and code. I still can understand certain code and function, but I am interested in learning it all. Please tell me if any one is interested on being my teacher or finding me a manual, online or whatever..

    Please PM me or reply I really dont care, I just want to make hax =P!!

    Learn for ure friends or online or.. by youreselF





    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpghm.gif[/IMG]
    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpgha.gif[/IMG]


    Use My Free VIP Hacks!

    Here Are My Free VIP Hacks.

  5. #5
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    from a book

  6. #6
    Don't be a prick, let me suck your dick.
    MPGH Member
    Paranormal's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Bel Air
    Posts
    2,117
    Reputation
    14
    Thanks
    187
    My Mood
    Amused
    Well Good Luck Broski.
    Cuties<3

  7. #7
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Learn It At Your Down Home Down The Street , Piggly Wiggly..

    Nah But Really Search For MSDN Forums

  8. #8
    ~HeartLessTeen~'s Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    200
    Reputation
    10
    Thanks
    5
    My Mood
    Sad
    Read a book called "Learning Microsoft C++ for dummies".
    It's a real book. :P

  9. #9
    koolwrench's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    California
    Posts
    173
    Reputation
    10
    Thanks
    48
    My Mood
    Amused
    i too am getting into coding yet i need to understand more of the more complex functions
    DONT FORGET TO PRESS THE THANKS BUTTON

    accomplishment list:
    post 5 times []
    post 10 times []
    post 50 times[]
    post 100 times[]
    begin to learn coding[]
    code first program []
    code second program[]
    code first hack []
    code a awsome hack[]
    become a member[]
    become a well known[]
    get a unbeliavable[]
    get an unbeliavble+[]
    get called a haxor without hacking[]
    hack without being called a hacker[]






    RESPECT LIST:
    [MPGH]Dave84311
    [Mpgh]Liz

  10. #10
    wicho_koz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    193
    Reputation
    12
    Thanks
    52
    My Mood
    Shocked
    i need help with gellins base

Similar Threads

  1. HELP!!! WHERE CAN I GET AIMBOT FOR KOS PH???
    By pasdjaspdj in forum K.O.S. Secret Operation Hacks
    Replies: 1
    Last Post: 09-25-2011, 11:30 AM
  2. [Help] Help! Where can I find ...
    By lFreeStepl in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 06-20-2011, 10:37 AM
  3. [help] Where can I find?
    By GBot! in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 2
    Last Post: 08-11-2010, 07:16 AM
  4. [HELP] Where can i find these.
    By Lewisc12x in forum CrossFire Mods & Rez Modding
    Replies: 0
    Last Post: 07-25-2010, 12:37 PM
  5. need help|where can i fine proxy?
    By denisd12 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-04-2009, 10:16 AM