Results 1 to 5 of 5
  1. #1
    alvis44's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    6

    Newbie Need a lot if help

    #include <Windows.h> // Must always include this .

    // --- > Address < --- //
    #define ADR_PlayerPointer 0x00A31744 //Player Pointer

    // --- > Address < --- //
    #define ADR_TEAMESP 0x00a3a40c //Here the pointer

    // --- > Offset < --- //
    #define OFS_ESP 0x61 // TeamESP offset

    void HACK()
    {
    while (1) //While true
    {
    if (GetAsyncKeyState(VK_INSERT) & 1)//Set your hotkey
    {
    *(float*)(ADR_PlayerPointer + OFS_ESP) = 0.0f;//Set your Address and Value

    }
    }
    }

    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH)//Process Attach
    {
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HACK, NULL, NULL, NULL);
    MessageBoxA(0, "FIRST HACK .", "LOL", MB_YESNO);//Set your MsgBox text and caption
    }
    return TRUE;
    }



    I build this and injected into game, press the hotkey and nth happens. Few mins later, Game Hack Detected. Can anyone guide me?

  2. #2
    rushil69's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    ❗❶❷❼.⓿.⓿.❶❗
    Posts
    435
    Reputation
    10
    Thanks
    825
    My Mood
    Devilish
    Quote Originally Posted by alvis44 View Post
    #include <Windows.h> // Must always include this .

    // --- > Address < --- //
    #define ADR_PlayerPointer 0x00A31744 //Player Pointer

    // --- > Address < --- //
    #define ADR_TEAMESP 0x00a3a40c //Here the pointer

    // --- > Offset < --- //
    #define OFS_ESP 0x61 // TeamESP offset

    void HACK()
    {
    while (1) //While true
    {
    if (GetAsyncKeyState(VK_INSERT) & 1)//Set your hotkey
    {
    *(float*)(ADR_PlayerPointer + OFS_ESP) = 0.0f;//Set your Address and Value

    }
    }
    }

    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH)//Process Attach
    {
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HACK, NULL, NULL, NULL);
    MessageBoxA(0, "FIRST HACK .", "LOL", MB_YESNO);//Set your MsgBox text and caption
    }
    return TRUE;
    }



    I build this and injected into game, press the hotkey and nth happens. Few mins later, Game Hack Detected. Can anyone guide me?

    The GameHack Detected is due to signature scan.
    -------------------------------------------------------------------------------------------
    To make the hack work try using byte instead of float. Also make sure
    all your address are updated

    Last edited by rushil69; 11-17-2016 at 08:22 AM.
    RUSHIL69 == rE-BoOt

  3. #3
    Minerva's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    2,152
    Reputation
    380
    Thanks
    7,740
    My Mood
    Relaxed
    Hi, first of all you need frezze the value for teamesp, and the source was rencently released in source section.
    Probably the gamehack detected message it's due the pointer is outdated or the injector that you are using is already detected.

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

    alvis44 (11-17-2016),rushil69 (11-17-2016)

  5. #4
    alvis44's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    6
    @Minerva & @Luffy Closed this thread

  6. #5
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Requested by OP.

    /Closed.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

Similar Threads

  1. [Help] i need a lot of help understading some error
    By belog in forum C++/C Programming
    Replies: 2
    Last Post: 07-24-2014, 05:41 PM
  2. [Help Request] A lot of help needed.
    By TITS123 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 3
    Last Post: 04-17-2014, 01:53 AM
  3. I really need a lot of help xD
    By manu251 in forum Combat Arms Help
    Replies: 6
    Last Post: 07-02-2010, 08:54 PM
  4. Hi need A LOT OF help
    By MJackson007 in forum Combat Arms EU Discussions
    Replies: 9
    Last Post: 03-28-2010, 10:15 PM
  5. Newbie needs help
    By ins in forum C++/C Programming
    Replies: 1
    Last Post: 10-10-2008, 12:23 PM