Results 1 to 11 of 11
  1. #1
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic

    Simple base in any game


    Code:
    #include <windows.h>
    Code:
    
    
    
    #define Wallhack1 0x000 //Address
    #define glow 0x000// address
    
    
    bool Wallhack = false;
    
    
    void Wall()
    {
    	while (1)
    	{
    		DWORD Wallarray = *(DWORD*)(Wallhack1 + 0x00);
    
    
    		if (GetAsyncKeyState(VK_F1) & 1)
    			Wallhack = (!Wallhack);
    
    
    		if (Wallhack)
    		{
    			memcpy((void*)(Wallhack1 + 0x00), "\x90\x90\x90", 3); //ON
    		}
    		else
    		{
    			memcpy((void*)(Wallhack1 + 0x00), "\x10\x10\x10", 3); //OFF
    		}
    		if (GetAsyncKeyState(VK_F2) & 1)
    		{
    			*(DWORD*)(*(DWORD*)(*(DWORD*)(glow)+0x00) + 0x00) = 00; // value
    		}
    
    
    		Sleep(50);
    	}
    }
    
    
    
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hDll);
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Wall, 0, 0, 0);
    	}
    	return true;
    
    }
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



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

    Bodvar (09-09-2019),Janitor (09-09-2019),TheG2ek (09-10-2019),[Snake] (10-05-2019)

  3. #2
    zmika12's Avatar
    Join Date
    Sep 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Is that code wall crossfire west

  4. #3
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by zmika12 View Post
    Is that code wall crossfire west
    all game homies
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  5. #4
    zmika12's Avatar
    Join Date
    Sep 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    How to use CrossFire west

  6. #5
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by zmika12 View Post
    How to use CrossFire west
    first you need visual studio to build then injector all the tutorial you need is in youtube
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. #6
    TheG2ek's Avatar
    Join Date
    Jun 2019
    Gender
    male
    Posts
    70
    Reputation
    10
    Thanks
    226
    My Mood
    Bashful
    Quote Originally Posted by COD3RIN View Post

    Code:
    #include <windows.h>
    Code:
    
    
    
    #define Wallhack1 0x000 //Address
    #define glow 0x000// address
    
    
    bool Wallhack = false;
    
    
    void Wall()
    {
    	while (1)
    	{
    		DWORD Wallarray = *(DWORD*)(Wallhack1 + 0x00);
    
    
    		if (GetAsyncKeyState(VK_F1) & 1)
    			Wallhack = (!Wallhack);
    
    
    		if (Wallhack)
    		{
    			memcpy((void*)(Wallhack1 + 0x00), "\x90\x90\x90", 3); //ON
    		}
    		else
    		{
    			memcpy((void*)(Wallhack1 + 0x00), "\x10\x10\x10", 3); //OFF
    		}
    		if (GetAsyncKeyState(VK_F2) & 1)
    		{
    			*(DWORD*)(*(DWORD*)(*(DWORD*)(glow)+0x00) + 0x00) = 00; // value
    		}
    
    
    		Sleep(50);
    	}
    }
    
    
    
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hDll);
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Wall, 0, 0, 0);
    	}
    	return true;
    
    }
    Easiest way to do , GJ

  8. #7
    zmika12's Avatar
    Join Date
    Sep 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    I will put the code in the dll format and I will inject a injector and open the game is this the right way

  9. #8
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by zmika12 View Post
    I will put the code in the dll format and I will inject a injector and open the game is this the right way
    you need the address and offset of the crossfire game then build it c++ ready to inject

    fixed the base
    while (1)
    {
    DWORD Wallhack1 = *(DWORD*)(Wallhack1 + 0x00);
    Last edited by COD3RIN; 09-11-2019 at 04:30 AM.
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  10. #9
    xcheat1's Avatar
    Join Date
    Jun 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    now working :'(

  11. #10
    ranger2016's Avatar
    Join Date
    Jul 2019
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    I don't know how to put this code

  12. #11
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Quote Originally Posted by ranger2016 View Post
    I don't know how to put this code
    In a compiler.

Similar Threads

  1. [Help Request] is there any hacks for text based web browser games?
    By [killfreak] in forum Visual Basic Programming
    Replies: 6
    Last Post: 12-07-2012, 01:37 PM
  2. Any simple wallhack for this game?
    By MaximumWaffl in forum Combat Arms Hack Requests
    Replies: 3
    Last Post: 07-20-2012, 09:17 AM
  3. Bypassing A Screenshot in Any Game (D3D)
    By condor01 in forum Programming Tutorials
    Replies: 20
    Last Post: 10-15-2008, 01:23 AM
  4. selling multiple steam accounts with any game on it
    By junior mafia in forum Trade Accounts/Keys/Items
    Replies: 3
    Last Post: 05-07-2008, 04:04 PM
  5. HOW TO BECOME INVISIBLE IN ANY GAME OF WARROCK WIHOUT ANY HAXS.
    By soultaker in forum WarRock - International Hacks
    Replies: 10
    Last Post: 10-02-2007, 12:06 PM