Page 1 of 5 123 ... LastLast
Results 1 to 15 of 63
  1. #1
    hooch's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    208
    Reputation
    6
    Thanks
    1,194
    My Mood
    Hungover

    Arrow [Release]Name tag hack / Unlimited Ammo + Source Code!

    Inject it into game using any injectior. I prefer WinJect.

    F4 - Freez Ammo / No reload / Unlimited Ammo / Press second time to disable.
    F3 - Name tag hack / Press second time for name hack / press third tome to disable

    You should hear beep after hack activation.
    Tested on Windows 7 x64.

    UPDATE:
    There is source code for you. Compile it as dll.
    Code:
    #include <Windows.h>
    #include <wchar.h>
    
    #define ThreadMake(x) CreateThread(NULL,0, (LPTHREAD_START_ROUTINE)&x,NULL,0,NULL); 
    #define ThreadMakeParam(x, param) CreateThread(NULL,0, (LPTHREAD_START_ROUTINE)&x,param,0,NULL);
    
    #define BEEP_ACTIVATED Beep(2000, 500);
    #define BEEP_DEACTIVATED Beep(1000, 500);
    
    void Initialize();
    void ToggleAmmo();
    void ToggleTagHack();
    void Write2Asm(void*, BYTE*, int);
    DWORD pAmmo;
    DWORD pTagHack;
    
    void Hotkeys()
    {
    	while(true)
    	{
    		if (GetAsyncKeyState(VK_F4))
    		{
    			ToggleAmmo();
    		}
    
    		if (GetAsyncKeyState(VK_F3))
    		{
    			ToggleTagHack();
    		}
    		Sleep(500);
    	}
    }
    
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved
    					 )
    {
    	switch (ul_reason_for_call)
    	{
    	case DLL_PROCESS_ATTACH:
    		Beep(5000, 1000);
    		Initialize();
    		ThreadMake(Hotkeys);
    	case DLL_THREAD_ATTACH:
    	case DLL_THREAD_DETACH:
    	case DLL_PROCESS_DETACH:
    		break;
    	}
    	return TRUE;
    }
    
    void Initialize()
    {
    	DWORD CrysisBase = (DWORD)GetModuleHandle(L"CryGameCrysis2");
    	pAmmo = (CrysisBase + 0x4225D);
    	pTagHack = (CrysisBase + 0xF50C2);
    
    	//WCHAR tempChar[256];
    	//swprintf(tempChar, 256, L"0x%X", pAmmoOffset);
    	//MessageBox(NULL, tempChar,  L"Info", MB_OK | MB_ICONASTERISK);
    }
    
    void ToggleAmmo()
    {
    	static bool hack_activated = false;
    
    	if(hack_activated)
    	{
    		Write2Asm((void*)pAmmo,(PBYTE)"\x89\x70\x04",3);
    		hack_activated = false;
    		BEEP_DEACTIVATED
    	} 
    	else
    	{
    		Write2Asm((void*)pAmmo,(PBYTE)"\x90\x90\x90",3);
    		hack_activated = true;
    		BEEP_ACTIVATED
    	}
    }
    
    void ToggleTagHack()
    {
    	static int hack_state = 0;
    	
    	switch(hack_state)
    	{
    		case 0:
    			Write2Asm((void*)pTagHack,(PBYTE)"\xB3\x01",2);			
    			hack_state++;
    			BEEP_ACTIVATED
    			break;	
    		case 1:
    			Write2Asm((void*)pTagHack,(PBYTE)"\xB3\x02",2);			
    			hack_state++;
    			BEEP_ACTIVATED
    			break;	
    		case 2:
    			Write2Asm((void*)pTagHack,(PBYTE)"\x8A\xD8",2);			
    			hack_state = 0;
    			BEEP_DEACTIVATED
    			break;	
    	}
    
    }
    void Write2Asm(void* pxAddress, BYTE * MyBytes,  int size)
    {
    	unsigned long Protection;
    	VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
    	memcpy((void*)pxAddress, (const void*)MyBytes, size);
    	VirtualProtect((void*)pxAddress, size, Protection, 0);
    }

    Scan 1
    Scan 2
    Last edited by B4M; 03-07-2011 at 05:16 AM.

  2. The Following 9 Users Say Thank You to hooch For This Useful Post:

    alimarin (03-06-2011),flecki (03-07-2011),gokmen (03-08-2011),hackrazor (03-09-2011),NAZZ309 (04-03-2011),Sleekdigital (03-12-2011),teh.exploit (03-06-2011),wheredabudat (03-09-2011),Z_k (03-07-2011)

  3. #2
    mamilim90's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Tr
    Posts
    10
    Reputation
    10
    Thanks
    5
    Download ?*??

  4. The Following User Says Thank You to mamilim90 For This Useful Post:

    NAZZ309 (04-03-2011)

  5. #3
    hooch's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    208
    Reputation
    6
    Thanks
    1,194
    My Mood
    Hungover
    Quote Originally Posted by mamilim90 View Post
    Download ?*??
    Someone from site administration needs to approve it.

  6. The Following 2 Users Say Thank You to hooch For This Useful Post:

    Kitaj (04-08-2011),NAZZ309 (04-03-2011)

  7. #4
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    A gameplay?
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

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

    NAZZ309 (04-03-2011)

  9. #5
    mamilim90's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Tr
    Posts
    10
    Reputation
    10
    Thanks
    5
    Confirm ???

  10. The Following User Says Thank You to mamilim90 For This Useful Post:

    NAZZ309 (04-03-2011)

  11. #6
    fuckingterorist's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Behind You!
    Posts
    13
    Reputation
    10
    Thanks
    4
    My Mood
    Bitchy
    Please approve it

  12. The Following User Says Thank You to fuckingterorist For This Useful Post:

    NAZZ309 (04-03-2011)

  13. #7
    yozod's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    18
    Looks promising, hope it actually works.

  14. The Following User Says Thank You to yozod For This Useful Post:

    NAZZ309 (04-03-2011)

  15. #8
    mamilim90's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Tr
    Posts
    10
    Reputation
    10
    Thanks
    5
    Please approve it

  16. The Following User Says Thank You to mamilim90 For This Useful Post:

    NAZZ309 (04-03-2011)

  17. #9
    hooch's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    208
    Reputation
    6
    Thanks
    1,194
    My Mood
    Hungover
    If you want to download without approve you can open this thread in your mobile phone browser. In mobile version of this site you can download it. But remember. use it at your own risk.

    Quote Originally Posted by TheGodfather View Post
    A gameplay?
    I can't record on my computer.
    It's to weak. But I can post screenshot later on.
    Last edited by hooch; 03-06-2011 at 07:16 AM.

  18. The Following User Says Thank You to hooch For This Useful Post:

    NAZZ309 (04-03-2011)

  19. #10
    fuckingterorist's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Behind You!
    Posts
    13
    Reputation
    10
    Thanks
    4
    My Mood
    Bitchy
    /request approve

  20. The Following User Says Thank You to fuckingterorist For This Useful Post:

    NAZZ309 (04-03-2011)

  21. #11
    hooch's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    208
    Reputation
    6
    Thanks
    1,194
    My Mood
    Hungover
    Quote Originally Posted by fuckingterorist View Post
    /request approve
    Just compile it yourself.

  22. The Following 2 Users Say Thank You to hooch For This Useful Post:

    Kitaj (04-08-2011),NAZZ309 (04-03-2011)

  23. #12
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Post the screen shot.
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  24. The Following User Says Thank You to B4M For This Useful Post:

    NAZZ309 (04-03-2011)

  25. #13
    Outplayedqt's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    ..........
    Last edited by Outplayedqt; 03-06-2011 at 02:21 PM.

  26. The Following User Says Thank You to Outplayedqt For This Useful Post:

    NAZZ309 (04-03-2011)

  27. #14
    hooch's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    208
    Reputation
    6
    Thanks
    1,194
    My Mood
    Hungover
    Quote Originally Posted by Outplayedqt View Post
    Holy paranoia, batman. Here's the damn screenshot after compiling it myself:

    https://screensnapr.com/e/ktUpwg.jpg
    It's not your screenshot. It's from UC forum

  28. The Following User Says Thank You to hooch For This Useful Post:

    NAZZ309 (04-03-2011)

  29. #15
    Outplayedqt's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    ..........
    Last edited by Outplayedqt; 03-06-2011 at 02:20 PM.

  30. The Following User Says Thank You to Outplayedqt For This Useful Post:

    NAZZ309 (04-03-2011)

Page 1 of 5 123 ... LastLast

Tags for this Thread