Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    turkojan's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Joinville-SC
    Posts
    20
    Reputation
    10
    Thanks
    3
    My Mood
    Hot
    Quote Originally Posted by TokolocoSK View Post


    Talvez seja as pessoas que são muito acomodadas e não tem interesse em buscar informação ...

    Foi o que eu fiz , li , nao entendi e perguntei ! Mas tem gente que não sabe trocar idéia !

  2. #17
    TokolocoSK's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Búrguer.
    Posts
    2,874
    Reputation
    65
    Thanks
    6,858
    My Mood
    Yeehaw
    Quote Originally Posted by turkojan View Post
    Foi o que eu fiz , li , nao entendi e perguntei ! Mas tem gente que não sabe trocar idéia !
    Costumo trocar ideias com com pessoas que tem boas ideias e que tenha a sede de buscar informação, não com pessoas que não sabem interpretar um simples texto ...



  3. #18
    Fєηix's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Brαzil
    Posts
    1,178
    Reputation
    114
    Thanks
    6,891
    My Mood
    Sleepy
    Quote Originally Posted by turkojan View Post
    Fenix , desculpe minha ignorancia , mas esse codigo acrescenta Gp na conta ou é só visual ? e onde eu coloco esse código ?
    Sim é Apenas Visual!
    Baixe o Visual C++ 2010, Cria Um Novo Projecto .dll.
    Cole Esse Codigo e Aperte F5.

    Code:
    #include <windows.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    INT GP = 1;
    
    #define AdressGP 0x379D3260
    
    void Funçoes()
    {
    
     if(GP)
    	*(DWORD*)(AdressGP) = 9999999;
    }
    
    void dwHook (void)
    {
    	while(true) {
    	DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    
     if(CShell)
    	  {
    		Funçoes();
    	  }
    	}
    }
    
    INT WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
          CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)dwHook,NULL,NULL,NULL);
    	}
    	return TRUE;
    }

  4. #19
    FR1GHT's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Burguer e Bebendo Whisky
    Posts
    1,633
    Reputation
    68
    Thanks
    987
    My Mood
    Yeehaw
    Quote Originally Posted by TokolocoSK View Post


    Costumo trocar ideias com com pessoas que tem boas ideias e que tenha a sede de buscar informação, não com pessoas que não sabem interpretar um simples texto ...



  5. #20
    Hacker Fail's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    C++
    Posts
    2,136
    Reputation
    242
    Thanks
    12,562
    Quote Originally Posted by TokolocoSK View Post


    Ta fácil não tenho que consumir muitas batatas pra resolver essas contas :

    Que letrinha feia
    Member Level 1 since November, 2011
    Contributor since March, 2015
    Game Hacking Team : 06/14/2017

     

  6. #21
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    O topico ta virando off-topic, pra nao perder o costume:



    Algum minion deve fechar essa bosta antes que vire cancêr.
    Last edited by XarutoUsoCrack; 02-14-2014 at 08:22 AM.

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


    Talvez seja as pessoas que são muito acomodadas e não tem interesse em buscar informação ...
    É que vivemos em um pais que o Copa do Mundo para os Gringos é mais importante que a educação do proprio país.

  8. #23
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by --Fenix-- View Post
    Sim é Apenas Visual!
    Baixe o Visual C++ 2010, Cria Um Novo Projecto .dll.
    Cole Esse Codigo e Aperte F5.

    Code:
    #include <windows.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    INT GP = 1;
    
    #define AdressGP 0x379D3260
    
    void Funçoes()
    {
    
     if(GP)
    	*(DWORD*)(AdressGP) = 9999999;
    }
    
    void dwHook (void)
    {
    	while(true) {
    	DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    
     if(CShell)
    	  {
    		Funçoes();
    	  }
    	}
    }
    
    INT WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
          CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)dwHook,NULL,NULL,NULL);
    	}
    	return TRUE;
    }
    Isso vai da um lag se nao adicionar uma Sleep.

    Code:
    #include <windows.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    INT GP = 1;
    
    #define AdressGP 0x379D3260
    
    void Funçoes(LPVOID)
    {
    
     if(GP)
    	*(DWORD*)(AdressGP) = 9999999;
    }
    bool LEIAINGAME ()
    {
    	return
    		((DWORD)GetModuleHandleA(STRING_CSHELL) ||
    		 (DWORD)GetModuleHandleA(STRING_CLIENT)  ? true : false);
    }
    void WINAPIV HackThread(void*)
    { 	
    	while( TRUE )
    	{
    		while(!LEIAINGAME())
    			Sleep(100);
    
    		__asm CALL [Funçoes];
    	}
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThread,0,0,0);	
    				
    	}
    	return TRUE;
    }

  9. #24
    FR1GHT's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Burguer e Bebendo Whisky
    Posts
    1,633
    Reputation
    68
    Thanks
    987
    My Mood
    Yeehaw
    Xaruto será banido e jailson ficara sem se sentar por algumas semanas...



  10. #25
    Eu sou Daleste cheguei mais to saindo fora
    MPGH Member
    experthack's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,178
    Reputation
    90
    Thanks
    626
    My Mood
    Aggressive
    Quote Originally Posted by TokolocoSK View Post


    Ta fácil não tenho que consumir muitas batatas pra resolver essas contas :

    Letra feio do caralho não deu pra enteder nada

  11. #26
    TokolocoSK's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Búrguer.
    Posts
    2,874
    Reputation
    65
    Thanks
    6,858
    My Mood
    Yeehaw
    Quote Originally Posted by experthack View Post


    Letra feio do caralho não deu pra enteder nada
    tipo calcule o valor x³+ 1/x³ sendo x a massa da terra dividida pelo raio do sol.



  12. #27
    Fєηix's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Brαzil
    Posts
    1,178
    Reputation
    114
    Thanks
    6,891
    My Mood
    Sleepy
    Quote Originally Posted by TokolocoSK View Post


    Ta fácil não tenho que consumir muitas batatas pra resolver essas contas :

    não tenho que consumir muitas batatas pra resolver essas contas :
    Mais Para Entender Essa Letra Sim

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Solved] visual do hack
    By New - Hacker in forum Combat Arms BR Coding Help
    Replies: 5
    Last Post: 08-20-2011, 03:44 PM
  2. [Release] Visual studio and visual basic 08 removing Registration
    By jhadd4 in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 1
    Last Post: 07-05-2011, 08:20 AM
  3. Anyway to modify explosion VISUAL's and VISUAL RADIUS?
    By Luke6.5 in forum Combat Arms Mod Discussion
    Replies: 15
    Last Post: 01-01-2010, 06:13 AM
  4. visual basic 06 hack someone????
    By abhayrk in forum Visual Basic Programming
    Replies: 0
    Last Post: 05-01-2009, 09:36 PM
  5. Dinar Hack with CE (VISUAL)
    By dlwldud in forum WarRock - International Hacks
    Replies: 15
    Last Post: 06-05-2008, 03:02 PM