Results 1 to 15 of 15
  1. #1
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904

    Lightbulb Warface Info Hack

    #define GameStatus
    Code:
    Binary:  8B 0D 3C 8D 66 01 8B 11 8B 82 9C 00 00 00 53 68 04 67 4A 01 55 FF D0
    #define WeaponMgr
    Code:
    Binary : 8B 0D E0 4F 66 01 8B 49 60 8B 11 8B 42 54 FF D0
    #define PlayerMgr
    Code:
    Binary 8B 0D D0 E5 75 01 8B 01 8B 50 54 FF D2


    Simple Base Memory

    InGame.h:
    Code:
    class Tools
    {
    public:
    	bool InGameLoad();
    };
    
    bool Tools::InGameLoad()
    {
    	return(
    		GetModuleHandleA("Game.exe") &&
    		GetModuleHandleA("CryOnline.dll") &&
    		GetModuleHandleA("ocevogyv.dll") ?
    		0:1);
    }
    Main.cpp
    Code:
    #include <Windows.h>
    #include <stdio.h>
    #include <process.h>
    #include "InGame.h"
    
    Tools*pTool;
    
    #define WeaponMgr 0x???????????
    #define PlayerMgr 0x???????????
    
    
    void Haks(LPVOID)
    {
    	DWORD pGame = (DWORD)GetModuleHandleA("Game.exe");
    	if(pGame != NULL)
    	{
    		//Source here
    	}
    }
    
    unsigned int __stdcall Hook(LPVOID)
    {
    	while(1)
    	{
    		pTool->InGameLoad();
    		if(pTool->InGameLoad() != NULL)
    		{
    			__asm
    			{
    				CALL Haks
    			}
    		}		
    	}
    	return 0;
    }
    
    bool __stdcall DllMain( HINSTANCE hDll, long dwReason, void* lpReserved )
    { 
    	if( dwReason ==  DLL_PROCESS_ATTACH)
        {	
    		_beginthreadex(0, 0, Hook, 0, 0, 0);	
    		 system("start https://www.mpgh.net/forum/");
        }
        return 1;
    }
    Credits
    @luizimloko Help me in ASM
    @dreek1 My Friend
    @Flengo
    @ForeverRed
    Last edited by 6ixth; 09-15-2013 at 06:49 PM.

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

    DigitalMind (11-15-2013),DonatX (11-17-2013),Rizenfox (11-26-2013)

  3. #2
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,175
    Reputation
    74
    Thanks
    1,263
    My Mood
    In Love
    Good Job!!!!!!
    Public Hack:
    Jun 2012 / Dec 2017

  4. #3
    luizimloko's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    fs:[0]
    Posts
    1,879
    Reputation
    136
    Thanks
    10,137
    My Mood
    Yeehaw
    @ForeverRed

    Code:
    #include <Windows.h>
    #include <stdio.h>
    #include <process.h>
    
    #define WeaponMgr 0x???????????
    #define PlayerMgr 0x???????????
    
    BOOL OHK;
    
    BOOL InGameLoad( VOID )
    {
    	return( GetModuleHandleA("Game.exe") &&
    			GetModuleHandleA("CryOnline.dll") &&
    			GetModuleHandleA("ocevogyv.dll") ? 0 : 1 );
    }
    
    VOID Haks( VOID )
    {
    	DWORD Game = (DWORD)GetModuleHandleA( "Game.exe" );
    
    	if( Game != NULL )
    	{
    		//Source here
    	}
    }
    
    UINT WINAPI Hook( PVOID )
    {
    	while( TRUE )
    	{
    		DWORD IsGameReady = InGameLoad();
    
    		__asm
    		{
    			MOV EAX, DWORD PTR DS:[IsGameReady]
    			TEST EAX, EAX
    			JE _JE
    			CALL DWORD PTR DS:[Hacks]
    _JE:
    			RETN
    		}
    
    		Sleep( 100 );
    	}
    
    	return FALSE;
    }
    
    BOOL WINAPI DllMain( HINSTANCE hDll, DWORD dwReason, PVOID lpReserved )
    { 
    	if( dwReason ==  DLL_PROCESS_ATTACH )
        {	
    		_beginthreadex( 0, 0, Hook, 0, 0, 0 );	
    		 system( "start https://www.mpgh.net/forum/" );
        }
    
        return TRUE;
    }
    Last edited by luizimloko; 09-15-2013 at 05:45 PM.

  5. The Following User Says Thank You to luizimloko For This Useful Post:

    6ixth (12-06-2013)

  6. #4
    saviobsi's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    as it does to turn into aquivo? codeblocks? . exe?

  7. #5
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by luizimloko View Post
    @ForeverRed

    Code:
    #include <Windows.h>
    #include <stdio.h>
    #include <process.h>
    
    #define WeaponMgr 0x???????????
    #define PlayerMgr 0x???????????
    
    BOOL OHK;
    
    BOOL InGameLoad( VOID )
    {
    	return( GetModuleHandleA("Game.exe") &&
    			GetModuleHandleA("CryOnline.dll") &&
    			GetModuleHandleA("ocevogyv.dll") ? 0 : 1 );
    }
    
    VOID Haks( VOID )
    {
    	DWORD Game = (DWORD)GetModuleHandleA( "Game.exe" );
    
    	if( Game != NULL )
    	{
    		//Source here
    	}
    }
    
    UINT WINAPI Hook( PVOID )
    {
    	while( TRUE )
    	{
    		DWORD IsGameReady = InGameLoad();
    
    		__asm
    		{
    			MOV EAX, DWORD PTR DS:[IsGameReady]
    			TEST EAX, EAX
    			JE _JE
    			CALL DWORD PTR DS:[Hacks]
    _JE:
    			RETN
    		}
    
    		Sleep( 100 );
    	}
    
    	return FALSE;
    }
    
    BOOL WINAPI DllMain( HINSTANCE hDll, DWORD dwReason, PVOID lpReserved )
    { 
    	if( dwReason ==  DLL_PROCESS_ATTACH )
        {	
    		_beginthreadex( 0, 0, Hook, 0, 0, 0 );	
    		 system( "start https://www.mpgh.net/forum/" );
        }
    
        return TRUE;
    }
    Very good, thx for share.

  8. #6
    3p1cModZZ's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Sorry for being a noob, but how do we use these hacks? I have never really learned how to inject hacks using anything other than programs, I'll look around and see what i can find, but any help here would be excellent.

  9. #7
    johnnyblack's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    685
    My Mood
    Sleepy
    I know how to make it work, but what does it really do? I wonder why it's so hard to find a merely simple description of the functionalities of the hacks in this forum and others


  10. #8
    Cyborgez1O1's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    your ass
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Yeehaw
    what is a info hack?

  11. #9
    Minykootra's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    My Mood
    Angry
    how do you use this stuff?

  12. #10
    Rizenfox's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    3
    how can you use this information?
    and why is it so hard to find a hack to this game?

  13. #11
    kartsingh's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    7
    My Mood
    Blah
    i think u need to build there c++ codes u may use codeblocks i will try it later when i complete my hacking and c++ course in 15 days

  14. #12
    dadavid2009's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Quebec
    Posts
    257
    Reputation
    31
    Thanks
    173
    My Mood
    Inspired
    It's always funny to see how people are stupid.
    Oh, and good job.

  15. #13
    Rizenfox's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by dadavid2009 View Post
    It's always funny to see how people are stupid.
    Oh, and good job.
    explain to me why it is stupid?

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

    Setura (11-28-2013)

  17. #14
    OBrozz's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    65
    Thanks
    813
    Quote Originally Posted by dadavid2009 View Post
    It's always funny to see how people are stupid.
    Oh, and good job.
    I find it hilarious that people like you, who may understand how to compile code and create a hack based on knowledge you received from someone else thinks he has the right laugh at others trying to learn. I used to code Combat Arms hacks for a number of years, aimbot and everything. I was around years before flengo, ask him but after about 2 years in the game development field I've almost forgot everything I needed to know. So do not think your above everyone else looking to learn, they are not supid(maybe some) but other here who are trying to learn see you as an arrogant, ignorant, asshole. #realtalk

  18. #15
    dadavid2009's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Quebec
    Posts
    257
    Reputation
    31
    Thanks
    173
    My Mood
    Inspired
    Quote Originally Posted by OBrozz View Post

    I find it hilarious that people like you, who may understand how to compile code and create a hack based on knowledge you received from someone else thinks he has the right laugh at others trying to learn. I used to code Combat Arms hacks for a number of years, aimbot and everything. I was around years before flengo, ask him but after about 2 years in the game development field I've almost forgot everything I needed to know. So do not think your above everyone else looking to learn, they are not supid(maybe some) but other here who are trying to learn see you as an arrogant, ignorant, asshole. #realtalk
    Sorry dude if i sound like an arrogant, ignorant, asshole. But you know what! If someone really want to learn stuff there is google ( and this will be a lot faster). Also when someone learn something all by himself there is less chance that he will forget it. And again i probably sound like that.... But you know what ? you probably have right! Still that i love you so much bra !

    Oh and yes i really think that i'm above everyone (or mostly everybody) because i live on the top of a mountain which is 2570 feet from that water level.

    Signed: Your lovely and beautiful husband. xxx
    Last edited by dadavid2009; 01-15-2014 at 04:28 PM.

Similar Threads

  1. [Info] Hack Fixer
    By ARHQA$Y$YW4AYG4y in forum CrossFire Tutorials
    Replies: 20
    Last Post: 12-04-2011, 02:05 PM
  2. How to solve Disconnect Due to Incorrect Map Info/Hack Tool Detected
    By OverDrivejt in forum CrossFire Tutorials
    Replies: 33
    Last Post: 11-11-2010, 05:47 AM
  3. [INFO]Hacks Solution
    By RagedYet in forum Combat Arms Coding Help & Discussion
    Replies: 20
    Last Post: 10-22-2010, 01:17 AM
  4. Disconnect Due to Incorrect Map Info/Hack Tool Detected
    By Sympony13 in forum CrossFire Help
    Replies: 3
    Last Post: 07-06-2010, 09:03 AM
  5. [Request]Info Hack
    By spiritpower0 in forum Blackshot Hacks & Cheats
    Replies: 0
    Last Post: 09-08-2009, 08:56 AM