Thread: Help Hack

Results 1 to 15 of 15
  1. #1
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused

    Post Help Hack

    Gente eu fiz um hack com o seguintes codicos

    // Source Code: WE11ington

    #include <windows.h>
    #include <stdio.h>
    #include <stdlib.h>

    #define DeviceGame 0x0090AF20
    #define LTClientEXE 0x00485DD0
    #define LTClientDLL 0x377FE9F0
    #define GameStatus 0x3780C6E8
    #define EspName1 0x3736999C
    #define EspName2 0x37369A36
    #define NoRecoil 0x3746139C
    #define NoReload 0x374AD104
    #define SuperBullets 0x374A7E06
    #define Invisible 0x378165F5
    #define GlassWalls 0x005721CA


    int Nomes, Invisivel, SemCoice, SemRecarregar, SuperMunicao;

    void Trapaca1 (void)
    {
    if (GetAsyncKeyState(VK_NUMPAD1)&1)
    Nomes = !Nomes;

    if ((*(BYTE *)GameStatus == 1) && Nomes) {
    memcpy((void *)EspName1, (void *)(PBYTE)"\x90\x90", 2);
    memcpy((void *)EspName2, (void *)(PBYTE)"\x90\x90", 2);
    } else {
    memcpy((void *)EspName1, (void *)(PBYTE)"\x75\x21", 2);
    memcpy((void *)EspName2, (void *)(PBYTE)"\x75\x05", 2);
    }
    }

    void Trapaca2 (void)
    {
    if (GetAsyncKeyState(VK_NUMPAD2)&1)
    Invisivel = !Invisivel;

    if ((*(BYTE *)GameStatus == 1) && Invisivel) {
    memcpy((void *)Invisible, (void *)(PBYTE)"\x01", 1);
    } else {
    memcpy((void *)Invisible, (void *)(PBYTE)"\x00", 1);
    }
    }

    void Trapaca3 (void)
    {
    if (GetAsyncKeyState(VK_NUMPAD3)&1)
    SemCoice = !SemCoice;

    if ((*(BYTE *)GameStatus == 1) && SemCoice) {
    memcpy((void *)NoRecoil, (void *)(PBYTE)"\x90\x90\x90\x90", 4);
    } else {
    memcpy((void *)NoRecoil, (void *)(PBYTE)"\xD9\x44\x24\x10", 4);
    }
    }

    void Trapaca4 (void)
    {
    if (GetAsyncKeyState(VK_NUMPAD4)&1)
    SemRecarregar = !SemRecarregar;

    if ((*(BYTE *)GameStatus == 1) && SemRecarregar) {
    memcpy((void *)NoReload, (void *)(PBYTE)"\x90\x90\x90\x90\x90\x90", 6);
    } else {
    memcpy((void *)NoReload, (void *)(PBYTE)"\x0F\x84\xB1\x01\x00\x00", 6);
    }
    }

    void Trapaca5 (void)
    {
    if (GetAsyncKeyState(VK_NUMPAD5)&1)
    SuperMunicao = !SuperMunicao;

    if ((*(BYTE *)GameStatus == 1) && SuperMunicao) {
    memcpy((void *)SuperBullets, (void *)(PBYTE)"\x90\x90\x90", 3);
    } else {
    memcpy((void *)SuperBullets, (void *)(PBYTE)"\x0F\x94\xC0", 3);
    }
    }

    void Trapacas (void)
    {
    HMODULE AguardarCShell;
    do {
    AguardarCShell = GetModuleHandle("CShell.dll");
    Sleep(100);
    } while (!AguardarCShell);

    while (1) {
    Trapaca1 ();
    Trapaca2 ();
    Trapaca3 ();
    Trapaca4 ();
    Trapaca5 ();

    Sleep(100);
    }
    }

    BOOL APIENTRY DllMain (HINSTANCE hInst /* Library instance handle. */ ,
    DWORD reason /* Reason this function is being called. */ ,
    LPVOID reserved /* Not used. */ )
    {
    switch (reason) {
    case DLL_PROCESS_ATTACH:
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Trapacas, 0, 0, 0);
    break;

    case DLL_PROCESS_DETACH:
    break;

    case DLL_THREAD_ATTACH:
    break;

    case DLL_THREAD_DETACH:
    break;
    }

    /* Returns TRUE on success, FALSE on failure */
    return TRUE;
    }



    eu compilei no D C++ deu certo mais quando eu entro no jogo ele nao faz nada eu aperto os numpad ele nao faz nada alguem me ajuda por favor


    vlwwwwwwwwwwwwwwwwwwwwwww

  2. #2
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    /Moved .


  3. #3
    jonnyboy9985's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Canada :D
    Posts
    892
    Reputation
    -46
    Thanks
    66
    My Mood
    Chatty
    No int main function or int _tmain? Also, organize it okay? Use namespaces, and call all those things you did, near the globals, and you can just put it in a .h if you really want... Make a clean base, and you should be able to make shit easy :P
    Sammy told me to...

  4. #4
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Why do you have so many voids
    No I do not make game hacks anymore, please stop asking.

  5. #5
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    Vlw galera to entendendo tudinho ingles

  6. #6
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    A ellos no le gustan los hispano hablantes. Ellos no van a assitir tu.

    Tu necessito un classe de C++

  7. #7
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    vlw irmao pelo menos tento ajuda mais eu nao to sabendo nada me ajuda vlw aew

  8. #8
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Lo siento, perro no sabo espanol/portugesa muy bien. Possiblamente tus discursos no son correctos. Tu's neccesito a combinar sus funciones en uno funcion, y crear un hilo.

  9. #9
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by CodeDemon View Post
    Lo siento, perro no sabo espanol/portugesa muy bien. Possiblamente tus discursos no son correctos. Tu's neccesito a combinar sus funciones en uno funcion, y crear un hilo.
    Damn, I actually understand dis.

    It's se (accent on e), not sabo.

  10. #10
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    Eu sou muito noob se alguem me ajuda ai me passa msn

  11. #11

  12. #12
    asdj3h93984h32hndnansd's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    wrw
    Posts
    82
    Reputation
    10
    Thanks
    10
    learn c++ ?

    lol

  13. #13
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  14. #14
    LAKEN's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    0
    My Mood
    Bashful
    whats a wall hack??

  15. #15
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by LAKEN View Post
    whats a wall hack??
    You hack walls.