Page 1 of 5 123 ... LastLast
Results 1 to 15 of 61
  1. #1
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,196
    My Mood
    Cheerful

    show_projectiles-2-14-2018

    hey hey,

    im releasing something little.
    this cheat is update that i used to release with better fps called: show projectiles

    1 - open game and cheat as admin
    2 - in game ud see bullets,grenades paths

    some images:




    Code:
    /*
    * Copyright (C) 2018  lava
    *
    * This program is free software: you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation, either version 3 of the License.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program.  If not, see <https://www.gnu.org/licenses/>.
    */
    
    #include <windows.h>
    #include <stdio.h>
    #include <TlHelp32.h>
    
    const unsigned long OFFSET_TERMINAL = 0x5BFE0;
    const unsigned long OFFSET_SHOW_PROJECTILES = 0x10C;
    const unsigned long OFFSET_CLEAR_ALL_DEBUG = 0x378;
    
    unsigned long get_proc(const char *name) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
        PROCESSENTRY32 pe32;
        pe32.dwSize = sizeof(PROCESSENTRY32);
    
        while (Process32Next(snapshot, &pe32))
            if (strcmp(pe32.szExeFile, name) == 0)
                return pe32.th32ProcessID;
    
        return 0;
    }
    
    unsigned long get_module(unsigned long pid, const char *module_name, unsigned long *size) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid);
        MODULEENTRY32 me32;
        me32.dwSize = sizeof(MODULEENTRY32);
    
        while (Module32Next(snapshot, &me32)) {
            if (strcmp(me32.szModule, module_name) == 0) {
                printf("\n\tmodule: %s, %08X ", me32.szModule, me32.modBaseAddr);
                if (size != 0) *size = me32.modBaseSize;
                return (unsigned long)me32.modBaseAddr;
            }
        } return 0;
    }
    
    
    int main() {
        // vars this func uses
        unsigned long pid; // process id
        unsigned long globals_dll;
        unsigned long terminal;
        void *handle;
    
        bool enabling_cheat;
    
    
        // declare vars
        pid = 0;
        globals_dll = 0;
        terminal = 0;
    
        enabling_cheat = false;
    
        printf("||=======================================================||\n");
        printf("||          cheat for hng version 142821 QQ              ||\n");
        printf("||                 show projectiles                      ||\n");
        printf("|| made by: lava                                         ||\n");
        printf("||=======================================================||\n");
    
        for (; get_proc("HeroesAndGeneralsDesktop.exe") != 0; ) {
            printf("searching for hng ... ");
            for (pid = 0; pid == 0; ) pid = get_proc("hng.exe");
            printf("| Done\n");
    
            printf("hook to hng ... ");
            handle = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, false, pid);
            if (handle) {
                printf("searching modules ... ");
                for (; globals_dll == 0; Sleep(1000)) globals_dll = get_module(pid, "globals.dll", 0);
                printf("<<-- Done\n");
    
                printf("enabling show projectile path ... ");
                enabling_cheat = ReadProcessMemory(handle, (void *)(globals_dll + OFFSET_TERMINAL), &terminal, 4, 0);
                enabling_cheat = WriteProcessMemory(handle, (void *)(terminal + OFFSET_SHOW_PROJECTILES), "\x01", 1, 0);
    
                if (enabling_cheat) {
                    printf("| Done\n");
    
                    printf("wokring on it ... ");
                    for (;; Sleep(400)) {
                        // check if process is closed
                        if (get_proc("hng.exe") != 0) {
                            WriteProcessMemory(handle, (void *)(terminal + OFFSET_CLEAR_ALL_DEBUG), "\x01", 1, 0);
                        } else {
                            printf("end of game listening new\n");
                            break;
                        }
                    }
                } else {
                    printf("| failed\n");
                    printf("error log: try again or ur out of luck\n");
                }
            } else {
                printf("| Failed\n");
                printf("error log: run cheat with admin rights\n");
            }
        }
    
        printf("bye bye\n");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".\n");
        Sleep(1000);
    
        return 0;
    }
    virus scans:
    https://virusscan.jotti.org/en-US/fi...job/h7shpenxdj
    https://www.virustotal.com/#/file/79...4cc3/detection

    Source for 2-15-2018
    Code:
    /*
    * Copyright (C) 2018  lava
    *
    * This program is free software: you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation, either version 3 of the License.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program.  If not, see <https://www.gnu.org/licenses/>.
    */
    
    #include <windows.h>
    #include <stdio.h>
    #include <TlHelp32.h>
    
    const unsigned long OFFSET_TERMINAL = 0x5C0D0;
    const unsigned long OFFSET_SHOW_PROJECTILES = 0x114;
    const unsigned long OFFSET_CLEAR_ALL_DEBUG = 0x374;
    
    unsigned long get_proc(const char *name) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
        PROCESSENTRY32 pe32;
        pe32.dwSize = sizeof(PROCESSENTRY32);
    
        while (Process32Next(snapshot, &pe32))
            if (strcmp(pe32.szExeFile, name) == 0)
                return pe32.th32ProcessID;
    
        return 0;
    }
    
    unsigned long get_module(unsigned long pid, const char *module_name, unsigned long *size) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid);
        MODULEENTRY32 me32;
        me32.dwSize = sizeof(MODULEENTRY32);
    
        while (Module32Next(snapshot, &me32)) {
            if (strcmp(me32.szModule, module_name) == 0) {
                printf("\n\tmodule: %s, %08X ", me32.szModule, me32.modBaseAddr);
                if (size != 0) *size = me32.modBaseSize;
                return (unsigned long)me32.modBaseAddr;
            }
        } return 0;
    }
    
    
    int main() {
        // vars this func uses
        unsigned long pid; // process id
        unsigned long globals_dll;
        unsigned long terminal;
        void *handle;
    
        bool enabling_cheat;
    
    
        // declare vars
        pid = 0;
        globals_dll = 0;
        terminal = 0;
    
        enabling_cheat = false;
    
        printf("||=======================================================||\n");
        printf("||          cheat for hng version 142953 QQ              ||\n");
        printf("||                 show projectiles                      ||\n");
        printf("|| made by: lava                                         ||\n");
        printf("||=======================================================||\n");
    
        for (; get_proc("HeroesAndGeneralsDesktop.exe") != 0; ) {
            printf("searching for hng ... ");
            for (pid = 0; pid == 0; ) pid = get_proc("hng.exe");
            printf("| Done\n");
    
            printf("hook to hng ... ");
            handle = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, false, pid);
            if (handle) {
                printf("searching modules ... ");
                for (; globals_dll == 0; Sleep(1000)) globals_dll = get_module(pid, "globals.dll", 0);
                printf("<<-- Done\n");
    
                printf("enabling show projectile path ... ");
                enabling_cheat = ReadProcessMemory(handle, (void *)(globals_dll + OFFSET_TERMINAL), &terminal, 4, 0);
                enabling_cheat = WriteProcessMemory(handle, (void *)(terminal + OFFSET_SHOW_PROJECTILES), "\x01", 1, 0);
    
                if (enabling_cheat) {
                    printf("| Done\n");
    
                    printf("wokring on it ... ");
                    for (;; Sleep(400)) {
                        // check if process is closed
                        if (get_proc("hng.exe") != 0) {
                            WriteProcessMemory(handle, (void *)(terminal + OFFSET_CLEAR_ALL_DEBUG), "\x01", 1, 0);
                        } else {
                            printf("end of game listening new\n");
                            break;
                        }
                    }
                } else {
                    printf("| failed\n");
                    printf("error log: try again or ur out of luck\n");
                }
            } else {
                printf("| Failed\n");
                printf("error log: run cheat with admin rights\n");
            }
        }
    
        printf("bye bye\n");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".\n");
        Sleep(1000);
    
        return 0;
    }
    Last edited by T-800; 06-30-2018 at 12:36 PM.

  2. The Following 150 Users Say Thank You to lala For This Useful Post:

    12prosinec (03-04-2018),2nen23 (05-20-2018),322SS (02-25-2018),abyssoak1 (03-06-2018),Alan7667 (02-17-2018),aleriagwapo (03-09-2018),anhlatuan52 (06-04-2018),antreasg9 (03-05-2018),arthurbezerra__ (05-28-2018),aujv (04-09-2018),badman52 (03-03-2018),bajaj (03-02-2018),bankmimi (02-22-2018),BLUETHEME1 (02-25-2018),bobs445 (04-29-2018),bolasonic77 (04-30-2018),brokiverem (05-05-2018),Broul (02-16-2018),brycehat99 (02-16-2018),cartown (04-06-2018),caspjkeee (03-07-2018),CraftUrToeMC (02-19-2018),darius1123 (04-13-2018),dbnator (04-02-2018),dedexpo68 (03-07-2018),deinemutti (02-15-2018),Delirium227 (04-25-2018),didihacker (05-01-2018),Drunkensoja (03-02-2018),Dryadalis (02-18-2018),Dtory2015 (04-02-2018),dulp1999 (09-09-2018),echovalley (04-14-2018),eldons94 (03-27-2018),emirhan9988 (04-08-2018),endi07 (06-28-2018),fernandoes57 (03-04-2018),flumpy (03-29-2018),g9h007 (03-07-2018),gafusegg (04-07-2018),gallimus9 (05-07-2018),gamesersa01 (06-27-2018),generelaaronsito (04-07-2018),grimmjow_TR (02-22-2018),Hadrianus (02-14-2018),hanafi12 (02-28-2018),hellborn13 (05-20-2018),Hering (02-17-2018),hjio85 (02-21-2018),ibrahem33333 (03-06-2018),idk123987 (02-14-2018),IFIuZzy (04-09-2018),ilme (04-04-2018),INsBInsane (05-25-2018),irgnak (08-14-2018),islamou (04-16-2018),jaheartattack (04-13-2018),jeph0926 (04-22-2018),jjisntcool (04-08-2018),johahanan (04-25-2018),jokerpollo (02-14-2018),Joni-di (04-11-2018),Jumixian (05-19-2018),kalaske2 (04-11-2018),kamil12455 (04-02-2018),KankerWebsite123 (04-04-2018),kergil (06-24-2018),Koguryu100 (04-21-2018),KrayD90 (02-24-2018),kuchinta012 (03-30-2018),kuntul (02-24-2018),KwidyNNN12 (03-06-2018),L.Y.L (03-09-2018),L3g3nd121 (02-26-2018),lacpcgame (05-12-2018),lefthun763 (05-21-2018),Lenun (04-16-2018),locoloco22 (03-16-2018),lzhxwmr (02-27-2018),ManZill (04-25-2018),marpon (03-10-2018),mgrewal (04-02-2018),michaec455 (03-10-2018),Micheltv1010 (04-26-2018),Mijatovic_SERBIA (02-16-2018),minhvpe (03-04-2018),miszkowaty (06-23-2018),MoistPotato (03-07-2018),molnar1998 (05-10-2018),Mr24NA (02-19-2018),Mugsy-N (04-09-2018),murad661 (06-01-2018),name_666 (07-16-2018),NEXZshLash (05-06-2018),noomzuza2 (03-17-2018),Obalaka (04-30-2018),OCEANMOTION (02-14-2018),OLDHIRO (04-25-2018),omriu9000 (06-02-2018),opaman (04-13-2018),OTrezorO (02-18-2018),oxelesss (03-08-2018),panary (04-24-2018),pandathecat (04-06-2018),PBossna (02-28-2018),perun1mc (03-18-2018),pikis201 (02-25-2018),polos333 (05-08-2018),pondsport78 (04-07-2018),qawa15 (03-18-2018),radioisactive (03-07-2018),raihan putra (06-07-2018),recona (04-20-2018),RemieiaScarlet (03-05-2018),rico12342 (04-29-2018),RissyPuffs (05-07-2018),Riu (04-19-2018),rybaterro1 (06-10-2018),Scough (02-23-2018),sdc223 (07-29-2018),sdpasi (06-16-2018),shadowdoggie000 (06-21-2018),ShadowGoril (05-21-2018),shrekil (02-17-2018),sicross007 (09-27-2018),Slashex (03-16-2018),snerad (03-25-2018),spallt (11-19-2019),SpFkD (02-17-2018),suri06 (04-28-2018),talie940 (04-05-2018),teamsthailandsz0 (04-01-2018),Terrikon (03-21-2018),thansamvo (02-14-2018),TheErel (04-01-2018),thevet123 (02-23-2018),Three Baby (02-17-2018),TimeOutFreak (06-02-2018),toxic777 (06-11-2018),TrollerXD121 (05-06-2018),Trothadin (03-13-2018),tumbaza082 (06-28-2018),vanek96 (02-17-2018),vistas33 (02-22-2018),vivang12345 (02-16-2018),wadim39 (06-28-2018),warhamerrrr89 (04-28-2018),wawewe (02-24-2018),yolo1121 (04-21-2018),ZombieZ500 (03-25-2018)

  3. #2
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    //Approved

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  4. The Following User Says Thank You to T-800 For This Useful Post:

    [MPGH]lala (02-14-2018)

  5. #3
    OCEANMOTION's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    2
    My Mood
    Amused
    Thank you for this! However for some reason its hit or miss for me. When I play as my paratrooper it doesn't work after I drop from the plane. not sure if thats just me.

    No complaints at all. this is still amazing! was able to dodge so many nades.

  6. #4
    idk123987's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    Outside your local walmart
    Posts
    60
    Reputation
    10
    Thanks
    4
    Really greatful for this do you have any plans for a wh/aimbot in the future??

  7. #5
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,196
    My Mood
    Cheerful
    Quote Originally Posted by idk123987 View Post
    Really greatful for this do you have any plans for a wh/aimbot in the future??
    if i could make debug layer on top, damn reto applied it same props as anyother gameobject now :P

  8. The Following User Says Thank You to lala For This Useful Post:

    Hadrianus (02-14-2018)

  9. #6
    Hadrianus's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Nice! Thanks

  10. #7
    thansamvo's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    WOw, a new update and this donot work anymore

  11. #8
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,196
    My Mood
    Cheerful
    @gerassss updated, if u could put it on top would be nice

    source:
    Code:
    /*
    * Copyright (C) 2018  lava
    *
    * This program is free software: you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation, either version 3 of the License.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program.  If not, see <https://www.gnu.org/licenses/>.
    */
    
    #include <windows.h>
    #include <stdio.h>
    #include <TlHelp32.h>
    
    const unsigned long OFFSET_TERMINAL = 0x5C0D0;
    const unsigned long OFFSET_SHOW_PROJECTILES = 0x114;
    const unsigned long OFFSET_CLEAR_ALL_DEBUG = 0x374;
    
    unsigned long get_proc(const char *name) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
        PROCESSENTRY32 pe32;
        pe32.dwSize = sizeof(PROCESSENTRY32);
    
        while (Process32Next(snapshot, &pe32))
            if (strcmp(pe32.szExeFile, name) == 0)
                return pe32.th32ProcessID;
    
        return 0;
    }
    
    unsigned long get_module(unsigned long pid, const char *module_name, unsigned long *size) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid);
        MODULEENTRY32 me32;
        me32.dwSize = sizeof(MODULEENTRY32);
    
        while (Module32Next(snapshot, &me32)) {
            if (strcmp(me32.szModule, module_name) == 0) {
                printf("\n\tmodule: %s, %08X ", me32.szModule, me32.modBaseAddr);
                if (size != 0) *size = me32.modBaseSize;
                return (unsigned long)me32.modBaseAddr;
            }
        } return 0;
    }
    
    
    int main() {
        // vars this func uses
        unsigned long pid; // process id
        unsigned long globals_dll;
        unsigned long terminal;
        void *handle;
    
        bool enabling_cheat;
    
    
        // declare vars
        pid = 0;
        globals_dll = 0;
        terminal = 0;
    
        enabling_cheat = false;
    
        printf("||=======================================================||\n");
        printf("||          cheat for hng version 142953 QQ              ||\n");
        printf("||                 show projectiles                      ||\n");
        printf("|| made by: lava                                         ||\n");
        printf("||=======================================================||\n");
    
        for (; get_proc("HeroesAndGeneralsDesktop.exe") != 0; ) {
            printf("searching for hng ... ");
            for (pid = 0; pid == 0; ) pid = get_proc("hng.exe");
            printf("| Done\n");
    
            printf("hook to hng ... ");
            handle = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, false, pid);
            if (handle) {
                printf("searching modules ... ");
                for (; globals_dll == 0; Sleep(1000)) globals_dll = get_module(pid, "globals.dll", 0);
                printf("<<-- Done\n");
    
                printf("enabling show projectile path ... ");
                enabling_cheat = ReadProcessMemory(handle, (void *)(globals_dll + OFFSET_TERMINAL), &terminal, 4, 0);
                enabling_cheat = WriteProcessMemory(handle, (void *)(terminal + OFFSET_SHOW_PROJECTILES), "\x01", 1, 0);
    
                if (enabling_cheat) {
                    printf("| Done\n");
    
                    printf("wokring on it ... ");
                    for (;; Sleep(400)) {
                        // check if process is closed
                        if (get_proc("hng.exe") != 0) {
                            WriteProcessMemory(handle, (void *)(terminal + OFFSET_CLEAR_ALL_DEBUG), "\x01", 1, 0);
                        } else {
                            printf("end of game listening new\n");
                            break;
                        }
                    }
                } else {
                    printf("| failed\n");
                    printf("error log: try again or ur out of luck\n");
                }
            } else {
                printf("| Failed\n");
                printf("error log: run cheat with admin rights\n");
            }
        }
    
        printf("bye bye\n");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".\n");
        Sleep(1000);
    
        return 0;
    }
    virus scans:
    https://virusscan.jotti.org/en-US/fi...job/82t503ahuw
    https://www.virustotal.com/#/file-an...UxODcxNDUxMA==

    <b>Downloadable Files</b> Downloadable Files

  12. The Following 5 Users Say Thank You to lala For This Useful Post:

    idk123987 (02-15-2018),kalaske2 (04-11-2018),KingRuzu (03-26-2018),OTrezorO (02-19-2018),thansamvo (02-15-2018)

  13. #9
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Quote Originally Posted by flowing_around View Post
    @gerassss updated, if u could put it on top would be nice

    source:
    Code:
    /*
    * Copyright (C) 2018  lava
    *
    * This program is free software: you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation, either version 3 of the License.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program.  If not, see <https://www.gnu.org/licenses/>.
    */
    
    #include <windows.h>
    #include <stdio.h>
    #include <TlHelp32.h>
    
    const unsigned long OFFSET_TERMINAL = 0x5C0D0;
    const unsigned long OFFSET_SHOW_PROJECTILES = 0x114;
    const unsigned long OFFSET_CLEAR_ALL_DEBUG = 0x374;
    
    unsigned long get_proc(const char *name) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
        PROCESSENTRY32 pe32;
        pe32.dwSize = sizeof(PROCESSENTRY32);
    
        while (Process32Next(snapshot, &pe32))
            if (strcmp(pe32.szExeFile, name) == 0)
                return pe32.th32ProcessID;
    
        return 0;
    }
    
    unsigned long get_module(unsigned long pid, const char *module_name, unsigned long *size) {
        void *snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid);
        MODULEENTRY32 me32;
        me32.dwSize = sizeof(MODULEENTRY32);
    
        while (Module32Next(snapshot, &me32)) {
            if (strcmp(me32.szModule, module_name) == 0) {
                printf("\n\tmodule: %s, %08X ", me32.szModule, me32.modBaseAddr);
                if (size != 0) *size = me32.modBaseSize;
                return (unsigned long)me32.modBaseAddr;
            }
        } return 0;
    }
    
    
    int main() {
        // vars this func uses
        unsigned long pid; // process id
        unsigned long globals_dll;
        unsigned long terminal;
        void *handle;
    
        bool enabling_cheat;
    
    
        // declare vars
        pid = 0;
        globals_dll = 0;
        terminal = 0;
    
        enabling_cheat = false;
    
        printf("||=======================================================||\n");
        printf("||          cheat for hng version 142953 QQ              ||\n");
        printf("||                 show projectiles                      ||\n");
        printf("|| made by: lava                                         ||\n");
        printf("||=======================================================||\n");
    
        for (; get_proc("HeroesAndGeneralsDesktop.exe") != 0; ) {
            printf("searching for hng ... ");
            for (pid = 0; pid == 0; ) pid = get_proc("hng.exe");
            printf("| Done\n");
    
            printf("hook to hng ... ");
            handle = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, false, pid);
            if (handle) {
                printf("searching modules ... ");
                for (; globals_dll == 0; Sleep(1000)) globals_dll = get_module(pid, "globals.dll", 0);
                printf("<<-- Done\n");
    
                printf("enabling show projectile path ... ");
                enabling_cheat = ReadProcessMemory(handle, (void *)(globals_dll + OFFSET_TERMINAL), &terminal, 4, 0);
                enabling_cheat = WriteProcessMemory(handle, (void *)(terminal + OFFSET_SHOW_PROJECTILES), "\x01", 1, 0);
    
                if (enabling_cheat) {
                    printf("| Done\n");
    
                    printf("wokring on it ... ");
                    for (;; Sleep(400)) {
                        // check if process is closed
                        if (get_proc("hng.exe") != 0) {
                            WriteProcessMemory(handle, (void *)(terminal + OFFSET_CLEAR_ALL_DEBUG), "\x01", 1, 0);
                        } else {
                            printf("end of game listening new\n");
                            break;
                        }
                    }
                } else {
                    printf("| failed\n");
                    printf("error log: try again or ur out of luck\n");
                }
            } else {
                printf("| Failed\n");
                printf("error log: run cheat with admin rights\n");
            }
        }
    
        printf("bye bye\n");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".");
        Sleep(1000);
        printf(".\n");
        Sleep(1000);
    
        return 0;
    }
    virus scans:
    https://virusscan.jotti.org/en-US/fi...job/82t503ahuw
    https://www.virustotal.com/#/file-an...UxODcxNDUxMA==

    Approved and done

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  14. The Following User Says Thank You to T-800 For This Useful Post:

    [MPGH]lala (02-15-2018)

  15. #10
    xavier1400's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Tested just now, it injects but in game it doesnt work

  16. #11
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,196
    My Mood
    Cheerful
    Quote Originally Posted by xavier1400 View Post
    Tested just now, it injects but in game it doesnt work
    just tested and worked, try to build ur own from source with visual c++ 2017

  17. #12
    xavier1400's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    I don't understeand nothing of that xD do you know a reason why it is not working for me? am I supposed to inject any anti hs ?
    Last edited by xavier1400; 02-16-2018 at 12:04 PM.

  18. #13
    satagrid's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Belora
    Posts
    56
    Reputation
    10
    Thanks
    6
    thanks dude !

  19. #14
    Davidufdk53's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Do I set something wrong or you do not work for me? Within the game, you bring that little panel, but it's not a WH, whatz do problem?

  20. #15
    xavier1400's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Same for me, the supply one works but this dont work, it injects but the trajectiles dont appear

Page 1 of 5 123 ... LastLast

Similar Threads

  1. Replies: 665
    Last Post: 01-31-2019, 02:07 AM
  2. What the fuck (banned until 2018)
    By NotAlde in forum General
    Replies: 6
    Last Post: 03-20-2016, 08:06 PM
  3. [WTS] Xsplit Accounts+Premium till 2018+3 month code Premium
    By bojicha in forum Selling Accounts/Keys/Items
    Replies: 1
    Last Post: 01-29-2015, 10:21 AM
  4. [WTB] XSplit 2 Accounts worth 200$ each 3 years premium-2018/1/24 for CS:GO/H1Z1/other
    By bojicha in forum Trade Accounts/Keys/Items
    Replies: 1
    Last Post: 01-26-2015, 01:04 PM
  5. Replies: 16
    Last Post: 04-23-2014, 08:25 AM