Results 1 to 1 of 1
  1. #1
    Ryder'
    Ryder' is offline
    Guest
    Join Date
    2013 Jun
    Posts
    1
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Help me with my project

    Bom dia !!!


    A uns dias eu estava fazendo um hack para SuddenAttack, mais não tive sucesso na hora de ativar o hack, toda vez que eu ativo a gameguard detecta, gostaria de pedir a ajuda de vocês !!!!


    O hack que eu fiz é WeaponHack !!

    Code:
    #include <Windows.h>
    
    //Pointer das armas
    #define pointerArma 0xA68F80
    
    //função que dará a arma para o players
    DWORD __stdcall Principal(LPVOID) {
    
    		bool armaHack = false,
    			 armaHack1 = false
    		;
    
    		DWORD CShell = (DWORD) GetModuleHandleA ("CShell.dll");
            DWORD pointerarma = *(PDWORD)(CShell + pointerArma);
    
            while(1) {
    
    				DWORD* scout = (DWORD *) ((*(DWORD*) (CShell + pointerArma)) +17*4);
    				DWORD* m12 = (DWORD *) ((*(DWORD*) (CShell + pointerArma)) +608*4);
    
                    if (GetAsyncKeyState (VK_F1)) {
    
    					armaHack1 = 0;
    					armaHack = 1;
    				}
    				if (armaHack) {
    					
    						int i = 1;
    					 for(; i <= 9556; ++i)
                        
    						*(DWORD*)( scout + i )		 = *(DWORD*)(m12 + i);
    					}
    
    				}
            }
    }
    
    bool hookSuddenAttack () {
    
    	return GetModuleHandleA ("CShell.dll") != NULL ? true : false;
    }
    
    DWORD WINAPI Wait (LPVOID)
    {
    while (! hookSuddenAttack ()) Sleep (200);
    CreateThread (NULL, NULL, (LPTHREAD_START_ROUTINE) Principal, NULL, NULL, NULL);
    return 0;
    }
    
    //carregar a dll para dentro do jogo
    int __stdcall DllMain(HMODULE hModule,DWORD dwReason,LPVOID lpvReserved)
    {
    	
    	static int jaExecutado = 0;
    
    	if (! jaExecutado) {
    
    		DisableThreadLibraryCalls(hModule);
    		CreateThread(NULL,NULL,&Wait,NULL,NULL,NULL);
     
    		jaExecutado = 1;// o arquivo foi injetado com sucesso
    
    		MessageBeep (MB_OK);
    		MessageBoxA(0, "Criado por: Ryder'\n\nSkyper: iryder10", "WeaponHack Injetado com Sucesso", 0);
    	}
    	return TRUE;
    }

    Por favor ajude-me

Similar Threads

  1. [Info] Project level 90
    By FOXX in forum Aika Online
    Replies: 7
    Last Post: 2013-05-23, 07:24 AM
  2. [Request-C#]Trainer Project
    By P.o.X in forum C/C++
    Replies: 3
    Last Post: 2013-03-13, 07:08 AM
  3. [Request] Trainer Hp Exp project for aikaBr
    By jonas2 in forum Aika Online
    Replies: 9
    Last Post: 2012-09-07, 11:20 PM
  4. is anyone playing project blackout here?
    By lannyboy in forum General Talk
    Replies: 0
    Last Post: 2012-07-20, 04:59 PM
  5. Nid HELP on my project pls (unpacking)
    By pornpinoy in forum Research Requests
    Replies: 3
    Last Post: 2011-11-25, 05:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •