Results 1 to 7 of 7
  1. #1
    proeggby's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    652
    My Mood
    Yeehaw

    How to make hack undetected

    I recently done creating a TeamESP hack. but Blackshot it will auto close when Im pressing the hotkey in a room. Im using the .flt injection method.

    This is the source code. I hope anyone could help me

    Code:
    #include <Windows.h>
    
    
    #define ADR_PlayerPointer 0x00000
    #define ADR_TEAMESP 0x00000
    #define OFS_TEAMESP 0x61
    #define BYTE1 0x01
    #define BYTE2 0x00
    #define Zero 0
    #define One 1
    
    bool Variavel[MAX_PATH], VariavelEsp = false;
    
    void TeamEsp()
    {
    	while (1)
    	{
    		if (GetAsyncKeyState(VK_INSERT) & 1)      //VK_(hotkey)
    			VariavelEsp = !VariavelEsp;
    
    		if (VariavelEsp)
    		{
    			*(BYTE*)(*(DWORD*)(ADR_PlayerPointer)+OFS_TEAMESP) = One;
    			*(BYTE*)(ADR_TEAMESP) = BYTE1;
    			if (GetKeyState(VK_LBUTTON) < 0)
    			{
    				*(BYTE*)(*(DWORD*)(ADR_PlayerPointer)+OFS_TEAMESP) = Zero;
    				*(BYTE*)(ADR_TEAMESP) = BYTE2;
    				Sleep(3);
    			}
    		}
    		else
    		{
    			*(BYTE*)(*(DWORD*)(ADR_PlayerPointer)+OFS_TEAMESP) = Zero;
    			*(BYTE*)(ADR_TEAMESP) = BYTE2;
    			if (GetKeyState(VK_LBUTTON) < 0)
    			{
    				*(BYTE*)(*(DWORD*)(ADR_PlayerPointer)+OFS_TEAMESP) = One;
    				*(BYTE*)(ADR_TEAMESP) = BYTE1;
    				Sleep(3);
    			}
    		}
    		Sleep(5);
    	}
    }
    
    BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD _CallReason, LPVOID lpvReserved)
    {
    	switch (_CallReason)
    	{
    	case DLL_PROCESS_ATTACH:
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)TeamEsp, 0, 0, 0);
    		MessageBoxA(0, "Credits:(Hacker.Zone, anyonstopus, Xjemy2001, and Proeggby ) ", "Hack Succesfully Loaded !", MB_ICONINFORMATION); //messagebox
    	}
    	return 1;
    }
    Last edited by proeggby; 08-23-2017 at 11:53 AM.

  2. The Following 3 Users Say Thank You to proeggby For This Useful Post:

    Anju01 (09-01-2017),DangeBlazer (08-24-2017),Riz Maru (08-27-2017)

  3. #2
    KatakBS17's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    where i need to paste this code?

  4. #3
    HaziqBaik232's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    0
    How you make the source code

  5. #4
    rushil69's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    ❗❶❷❼.⓿.⓿.❶❗
    Posts
    435
    Reputation
    10
    Thanks
    826
    My Mood
    Devilish
    try this
    Change
    #define BYTE1 0x01
    #define BYTE2 0x00
    to
    #define BYTE1 1
    #define BYTE2 0
    RUSHIL69 == rE-BoOt

  6. #5
    HaziqBaik232's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    0
    rushil
    How to make source code ? i want make teleport can anybody Help me? Skype : Amerrul Idzham
    Facebook : Amerrul Idzham

  7. #6
    proeggby's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    652
    My Mood
    Yeehaw
    Quote Originally Posted by rushil69 View Post
    try this
    Change
    #define BYTE1 0x01
    #define BYTE2 0x00
    to
    #define BYTE1 1
    #define BYTE2 0
    Thanks for helping .. @Minerva please close this thread and this one --> https://www.mpgh.net/forum/showthread.php?t=1292381

  8. #7
    Minerva's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    2,152
    Reputation
    380
    Thanks
    7,740
    My Mood
    Relaxed
    Hi, threads closed as requested.
    //Solved

Similar Threads

  1. How to make a Undetected Cheat Engine
    By mental81 in forum Game Hacking Tutorials
    Replies: 51
    Last Post: 12-12-2018, 02:49 PM
  2. [Unresolved] How do i make hack undetected?
    By hokejista18 in forum Battlefield 4 Help
    Replies: 5
    Last Post: 11-30-2016, 07:08 AM
  3. How to make a Undetected Cheat Engine
    By ndk721 in forum Game Hacking Tutorials
    Replies: 8
    Last Post: 07-07-2014, 11:36 PM
  4. [Tutorial] How To Make Most Undetected Hacks Work
    By gamer2125 in forum CrossFire Tutorials
    Replies: 0
    Last Post: 06-14-2012, 09:56 PM
  5. how u make hacks with Dev-C++
    By devilslayer in forum C++/C Programming
    Replies: 4
    Last Post: 05-04-2008, 10:50 PM