Page 1 of 4 123 ... LastLast
Results 1 to 15 of 56
  1. #1
    gellgell08's Avatar
    Join Date
    Nov 2007
    Posts
    36
    Reputation
    10
    Thanks
    45

    HTG VIP HACK AND SRC CODE!!!!!!!!!

    He fucked with me now it's show time


    1st Screen
    User=public
    Password=htg223
    2nd Screen
    User=vip
    password=213rfe44
    IF WE FIND OUT YOU LEAK WE WILL BAN YOU




    /* * * * * * * * * * * * * * * * * * * * * * * */
    /* * * * * * * * * * * * * * * * * * * * * * * */
    /* ****** Source Code */
    /* */
    /* Author : OneWhoSighs */
    /* Version : 1.0 */
    /* * * * * * * * * * * * * * * * * * * * * * * */
    /* www.HackThisGame.Us.To */
    /* * * * * * * * * * * * * * * * * * * * * * * */
    /***********************************************/
    /* * * * * * * * * * * * * * * * * * * * * * * */

    #include <windows.h>

    #define GetTwoKeys(keyone,keytwo) if(GetAsyncKeyState(keyone) &0x8000 && GetAsyncKeyState(keytwo) &0x8000)

    DWORD* g_pJumpHeight = (DWORD*)0x01180400;
    float* JumpHeight()
    {
    if(!g_pJumpHeight)
    return NULL;
    if(!*g_pJumpHeight)
    return NULL;
    return(float*)(*g_pJumpHeight + 0x178);

    }

    DWORD* g_pNoFallDmg = (DWORD*)0x01180400;
    float* NoFallDamage()
    {
    if(!g_pNoFallDmg)
    return NULL;
    if(!*g_pNoFallDmg)
    return NULL;
    return(float*)(*g_pNoFallDmg + 0x26);
    }

    DWORD* g_pSwim = (DWORD*)0x01180400;
    float* Swim()
    {
    if(!g_pSwim)
    return NULL;
    if(!*g_pSwim)
    return NULL;
    return(float*)(*g_pNoFallDmg + 0x16);
    }

    float* UnderWaterWalk()
    {
    return(float*)(0x0081935C);
    }


    float* InstantSpawn1()
    {
    return(float*)(0x00C19098);
    }

    float* InstantSpawn2()
    {
    return(float*)(0x00F22F74);
    }

    short* Scope()
    {
    return(short*)(0x009F9E62);
    }

    float* Stamina()
    {
    return(float*)(0x00818904);
    }

    short* NoSpread()
    {
    return(short*)(0x009F9EA7);
    }

    short* NoRecoil()
    {
    return(short*)(0x009F9EA1);
    }

    bool bStamina = false;
    bool bScope = false;
    bool bSpawn = false;
    bool bRecoil = false;
    bool bSpread = false;
    bool bNoFallDmg = false;
    bool bFloat = false;
    bool bSwim = false;


    void MainLoop(){
    while(true){


    //Scope
    if(GetAsyncKeyState(0x31))
    {
    if(bScope == true)
    bScope = false;
    else
    bScope = true;
    Sleep(1000);
    }

    //Insta-Respawn
    GetTwoKeys(0x12,'R')
    {
    if(bSpawn == true)
    bSpawn = false;
    else
    bSpawn = true;
    Sleep(1000);
    }

    //Stamina
    GetTwoKeys(0x12,'S')
    {
    if(bStamina == true)
    bStamina=false;
    else
    bStamina=true;
    Sleep(1000);
    }

    //Spread
    GetTwoKeys(0x12,'A')
    {
    if(bSpread == true)
    bSpread=false;
    else
    bSpread=true;
    Sleep(1000);
    }

    //Recoil
    GetTwoKeys(0x12,'F')
    {
    if(bRecoil == true)
    bRecoil=false;
    else
    bRecoil=true;
    Sleep(1000);
    }

    //No Fall Damage
    if(GetAsyncKeyState(0x60))
    {
    if(bNoFallDmg == true)
    bNoFallDmg=false;
    else
    bNoFallDmg=true;
    Sleep(1000);
    }

    // FloatHack
    if(GetAsyncKeyState(0x61))
    {
    if(bFloat == true)
    bFloat=false;
    else
    bFloat=true;
    Sleep(1000);
    }

    //Super jump 5000
    if(GetAsyncKeyState(0x62))
    {
    *JumpHeight() = 5000;
    }


    //Swim on air
    if(GetAsyncKeyState(0x63))
    {
    if(bSwim == true)
    bSwim=false;
    else
    bSwim=true;
    Sleep(1000);
    }


    /* Bools */

    float* dwMe = JumpHeight();

    if(dwMe) // Make sure we are in game
    {
    //Swim
    if(bSwim == true)
    {
    *Swim() = 276;
    }
    else
    {
    *Swim() = 282;
    }
    //Float
    if(bFloat == true)
    {
    *JumpHeight() = 5000;
    }

    //NoFallDmg
    if(bNoFallDmg == true)
    {
    *NoFallDamage() = -999;
    }

    //Spread
    if(bSpread == true)
    {
    *NoSpread() = 0;
    }

    //Recoil
    if(bRecoil == true)
    {
    *NoRecoil() = 0;
    }

    //Insta-Respawn
    if(bSpawn == true)
    {
    *InstantSpawn1() = 0;
    *InstantSpawn2() = 0;
    }

    //Stamina
    if(bStamina == true)
    {
    *Stamina() = 5000;
    }else
    {
    *Stamina() = 20;
    }

    //Scope
    if(bScope == true)
    {
    *Scope() = 1;
    }else
    {
    *Scope() = 0;
    }


    }


    Sleep(10); // End of loop, without this = lag

    }

    }


    //DLL entry point
    bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){
    if(dwReason == DLL_PROCESS_ATTACH){
    DisableThreadLibraryCalls(hModule);

    //Create main thread
    CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)MainLo op,NULL,0,NULL);

    return true;
    }
    return true;
    }

  2. The Following 4 Users Say Thank You to gellgell08 For This Useful Post:

    Avinabo (07-30-2013),g36gunner (11-28-2007),icuigorz (11-29-2007),rajeev0007 (11-29-2007)

  3. #2
    cjg333's Avatar
    Join Date
    Apr 2007
    Location
    indianapolis
    Posts
    300
    Reputation
    17
    Thanks
    54
    rofl,rofl,rofl,too bad i dont need any of this crap,lawl maybe some newbs will get use out of it.

  4. #3
    g36gunner's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Location
    Error: the system has detected that you are gay
    Posts
    431
    Reputation
    16
    Thanks
    62
    nice job looks good i havnt tested it ill post virus scan in a sec im wonderin whos naruto1223???

  5. #4
    gellgell08's Avatar
    Join Date
    Nov 2007
    Posts
    36
    Reputation
    10
    Thanks
    45
    DONT MESS WITH PPL AND TALK SHIT OR THIS STUFF HAPPENZ

  6. #5
    g36gunner's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Location
    Error: the system has detected that you are gay
    Posts
    431
    Reputation
    16
    Thanks
    62
    AhnLab-V3-
    AntiVir-
    Authentium-
    Avast-
    AVG-
    BitDefender-
    CAT-QuickHeal- (Suspicious) - DNAScan
    ClamAV-
    DrWeb-
    eSafe-
    eTrust-Vet-
    Ewido-
    FileAdvisor-
    Fortinet-
    F-Prot-
    F-Secure-
    Ikarus-
    Kaspersky-McAfee-
    Microsoft-
    NOD32v2-
    Norman-Panda-
    Prevx1-
    Rising-
    Sophos-Sunbelt-
    TheHacker-
    VBA32-
    VirusBuster-
    Webwasher-Gateway-

  7. #6
    Str8Soulja's Avatar
    Join Date
    Nov 2007
    Posts
    8
    Reputation
    10
    Thanks
    11
    and i say again
    PWNT

  8. #7
    NetNavi's Avatar
    Join Date
    May 2007
    Location
    Gourav's. He said he was going to make me a cake. oh, he's back..NAKED! WTF r u doi-
    Posts
    3,788
    Reputation
    8
    Thanks
    204
    Quote Originally Posted by Str8Soulja View Post
    and i say again
    PWNT
    STFU

    ...stupid ******s

  9. #8
    foxhound's Avatar
    Join Date
    Aug 2007
    Posts
    48
    Reputation
    10
    Thanks
    3
    hope u BITCHES NO I PACKED THIS WITH KEYLOGGERS AND VIRUS'S NOW GELLIN ACC ON MPGH G0T H4X3D BY ME! AND P.S ITS NOT C++ NIGGAS

  10. #9
    vescovo's Avatar
    Join Date
    Sep 2007
    Location
    Hitlers Grave
    Posts
    1,403
    Reputation
    11
    Thanks
    145
    Quote Originally Posted by gellgell08 View Post
    DONT MESS WITH PPL AND TALK SHIT OR THIS STUFF HAPPENZ
    u stfu nobody did shit to u
    go put a monkey in ur pants ur hoe cause thats all ur ever going to get
    if u keep talking like that...

    come on body try me
    i no more about ur lil 1GB comp then ny1

  11. The Following User Says Thank You to vescovo For This Useful Post:

    neverhax (11-29-2007)

  12. #10
    gellgell08's Avatar
    Join Date
    Nov 2007
    Posts
    36
    Reputation
    10
    Thanks
    45
    why don't you ask him what happened to his site, have you got one ill try it bitch

  13. #11
    vescovo's Avatar
    Join Date
    Sep 2007
    Location
    Hitlers Grave
    Posts
    1,403
    Reputation
    11
    Thanks
    145
    Quote Originally Posted by gellgell08 View Post
    why don't you ask him what happened to his site, have you got one ill try it bitch
    i dnt give a fuck wat happened to his site..
    all i care about is if ur mom is going to bring the lube this time

  14. #12
    gellgell08's Avatar
    Join Date
    Nov 2007
    Posts
    36
    Reputation
    10
    Thanks
    45
    I could say this would be the worst day for you in the history of man kind, but that would be a lie, the worst day in the history of the world is when you came out of your mother's vagoo and fucked everyone's day up

  15. #13
    cjg333's Avatar
    Join Date
    Apr 2007
    Location
    indianapolis
    Posts
    300
    Reputation
    17
    Thanks
    54
    Quote Originally Posted by Tom View Post
    STFU

    ...stupid ******s
    um....Im white........

  16. #14
    NetNavi's Avatar
    Join Date
    May 2007
    Location
    Gourav's. He said he was going to make me a cake. oh, he's back..NAKED! WTF r u doi-
    Posts
    3,788
    Reputation
    8
    Thanks
    204
    Quote Originally Posted by cjg333 View Post
    um....Im white........
    Wasn't quoting you

  17. #15
    chris092's Avatar
    Join Date
    Nov 2007
    Posts
    2
    Reputation
    10
    Thanks
    0
    thank you for the hax but how do you get to the 2nd screen where you can enter vip?

Page 1 of 4 123 ... LastLast

Similar Threads

  1. Stamina Hack and source code ?
    By Teh Sasuke in forum C++/C Programming
    Replies: 0
    Last Post: 12-31-2007, 05:08 PM
  2. Trading 4 Bp's, 1 UCE, 1 Vip Hack and 1 Normal Hack!
    By ltkort213 in forum Trade Accounts/Keys/Items
    Replies: 5
    Last Post: 07-06-2007, 04:58 PM
  3. Trading VIP Hacks And Retail M60 Code For LVL 16+ Warrock ACCT
    By xth0rx in forum Trade Accounts/Keys/Items
    Replies: 12
    Last Post: 06-29-2007, 02:51 PM
  4. Trading all my VIP hacks and Bypasses for a lvl16+ wrr acc
    By BurakG in forum Trade Accounts/Keys/Items
    Replies: 1
    Last Post: 06-28-2007, 02:45 PM
  5. [TRADE] All my VIP hacks and bypasses for a high lvl account
    By killajones427 in forum Trade Accounts/Keys/Items
    Replies: 5
    Last Post: 06-28-2007, 07:03 AM