Page 3 of 3 FirstFirst 123
Results 31 to 44 of 44
  1. #31
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    dam dis is all liek rock0t scienc3

  2. #32
    -xGhost-'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    C:\Sytem32
    Posts
    344
    Reputation
    9
    Thanks
    57
    My Mood
    Relaxed
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    dam dis is all liek rock0t scienc3
    MPGH Official Troller
    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/ProXtremeSignature.png[/IMG]

    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/Signature.png[/IMG]

  3. #33
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    leeched most likely

  4. #34
    ғᴜᴋᴏᴊʀ's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    1,557
    Reputation
    87
    Thanks
    141
    My Mood
    Inspired
    DIZ NOOB BE Pr0ER THAN THE CODERS AT NEX0N (100% serious no sarcasm, he has 0 knowledge of C++ and can code better than nexon. )


    [IMG]https://i186.photobucke*****m/albums/x253/Rypleys/MNC/biohazard2.jpg[/IMG]

    MPGH in 5 words:

    Quote Originally Posted by ZEROProJect View Post
    1 in a million community

  5. #35
    Dieorwin's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    In My House
    Posts
    167
    Reputation
    21
    Thanks
    22
    This is useless..

    How could this help noobs if it is old?

    By the way
    SAY CAPE HORN 10 TIMES FAST!!

  6. #36
    Chocolate[Coder]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    3
    My Mood
    Yeehaw
    I'm new to this and you guys are dogs . . . I liked ***************** better they cared...

    Quote Originally Posted by Chocolate[Coder] View Post
    I'm new to this and you guys are dogs . . . I liked ***************** better they cared...
    Also It is'nt leeched and my IsGameReadyForHook I didnt load the Combat Arms .dll's for some reson it was on Grand Chase's...

  7. #37
    Dieorwin's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    In My House
    Posts
    167
    Reputation
    21
    Thanks
    22
    Chocolate, if you need help with coding you could ask before showing you could code combat arms hacks.

  8. #38
    Chocolate[Coder]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    3
    My Mood
    Yeehaw
    It is not leeched in the IsGameReadyForHook thing it is on Grand Chase dll's so ya. Keep criticism coming i wanna be a pro like you guys.

    Hey Noob. . . I admired you but your mean -.-. . .

  9. #39
    Astral Witch's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    106
    Reputation
    13
    Thanks
    30
    Quote Originally Posted by Chocolate[Coder] View Post
    It is not leeched in the IsGameReadyForHook thing it is on Grand Chase dll's so ya. Keep criticism coming i wanna be a pro like you guys.

    Hey Noob. . . I admired you but your mean -.-. . .
    It isn't being mean, it's being honest.

    Your code is obviously 100% leeched, you may be oblivious at the moment because you haven't had enough experience in coding. There's no indentation, the variable names are used EVERYWHERE OMG DO YOU EVEN KNOW WHAT HUNGARIAN NOTATION IS? Ahem, moving on. IsGameReadyForHook, I can't tell you how many times I've seen the same function name for when people post their code.

    I love how you commented that last function, the one before the main function. You don't know about any calling conventions, you don't know how to describe a function "call", you don't know what return does.

    LAST BUT NOT LEAST, L2FUCKINGCOMMENT
    Code:
    //COMMENT HERE
    
    /*COMMENT
    HERE*/

  10. #40
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    [HIGHLIGHT=C++]#include <windows.h>

    //to start off I use the bool IsGameReadyForHook
    bool IsGameReadyForHook()
    {
    if(GetModuleHandleA( "bugtrap.dll" ) != NULL
    &&(GetModuleHandleA( "dbghelp.dll" ) != NULL
    &&(GetModuleHandleA( "kncfirewall.dll" ) != NULL))
    )
    return true;
    return false;
    } //This identifies when the game is up and running and tells your dll to activate.

    //Then after I give my PushToConsole definition.
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3718BF20 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    } //This tells the program if PushToConsole("~~~"); then //make the program that you injected the Dll into to do the //commands that are in you PushToConsole parenthesis.

    //Next I make my main void where all the meat of my program goes.
    void main()
    {
    while(true)
    {
    if(GetAsyncKeyState(VK_UP)&1)
    {
    PushToConsole("PlayerJumpVelocity 800.000000");
    PushToConsole("PlayerGravity -800");
    }

    if(GetAsyncKeyState(VK_NUMPAD1)&1)
    {
    PushToConsole("ActivationPickupDistance 999.999999");
    }
    } //(I made with two old PTC commands.)

    //After I make my dwHackThread that tells you dll what to //do when injected.
    DWORD WINAPI dwHackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(100);
    main();
    return 0;
    } //In this code i told it to spam the IsGameReadyForHook //which indicates when the game is open and so your //computer will not lagg i made a 100 milisecond wait. After //i put main(); to tell them to use the main(); when it is //activated and return 0; when you are finished.

    //Last I make the Injection function so when you inject it //this is what it does.
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    MessageBoxA(0, "Hack Injection Succeded (Coded By: T7076o6o", "Succesful", 0);
    }
    return TRUE;
    } [/HIGHLIGHT]

    looks bettar.

  11. #41
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    wtf is a bool?

    I pushed edit instead of quote oops.




  12. #42
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Subliminal View Post


    I pushed edit instead of quote oops.
    If I was minion ... oooh I would fuck shit up.

  13. The Following User Says Thank You to NOOB For This Useful Post:

    Chocolate[Coder] (02-01-2011)

  14. #43
    Dreamer's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Seattle
    Posts
    8,745
    Reputation
    393
    Thanks
    1,481
    My Mood
    Bitchy
    ehh looks like C&P To me. But good job for the effort?
    Resource Team: Feb/5/2012 - May/5/2012
    Middleman: April/25/2012 - September/16/12


  15. #44
    Dieorwin's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    In My House
    Posts
    167
    Reputation
    21
    Thanks
    22
    Noob...

    Why would you post that picture!?

    There are way better ones out there..


    SAY CAPE HORN 5 TIMES FAST!!!

Page 3 of 3 FirstFirst 123