Results 1 to 3 of 3
  1. #1
    acdcacdc's Avatar
    Join Date
    Sep 2008
    Posts
    4
    Reputation
    10
    Thanks
    1

    Help How To Compile

    Code:
    bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    {
    	for(;*szMask;++szMask,++pData,++bMask)
    		if(*szMask=='x' && *pData!=*bMask ) 
    			return false;
    	return (*szMask) == NULL;
    }
    
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	for(DWORD i=0; i < dwLen; i++)
    		if( bCompare( (BYTE*)( dwAddress+i ),bMask,szMask) )
    			return (DWORD)(dwAddress+i);
    
    	return 0;
    }
    Code:
    DWORD Your Address = FindPattern( 0x400000, 0x5000, ( PBYTE )
    "\xA1\x00\x00\x00\x00\x83\xEC\x00\x80\x78\x00\x00", "x????xx?xx??" );
    how to turn that into a exe in c++

  2. #2
    jts88825's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    mobile,alabama
    Posts
    11
    Reputation
    10
    Thanks
    0
    you have it all wrong....i suggest start looking on you tube for lessons i did and they have this programer teaching you c++ basics i just started programing and i kno thats wrong soz

  3. #3
    kevin66062's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Wiscompton
    Posts
    1,551
    Reputation
    13
    Thanks
    211
    My Mood
    Sleepy
    ADdIEs man!
    ]

Similar Threads

  1. [need help] how do i join a KWR clan?????
    By blackdrag0 in forum WarRock Korea Hacks
    Replies: 0
    Last Post: 06-08-2007, 11:59 AM
  2. [help]how would i get the superjump address?
    By fable741 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-08-2007, 08:37 AM
  3. [HELP] how can i....
    By Evangelyon in forum WarRock - International Hacks
    Replies: 0
    Last Post: 04-29-2007, 04:43 PM
  4. Help! how do i make a jap warrock name?
    By gmgundamx7 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 04-04-2007, 11:07 AM
  5. Help! how to use ardamax keylogg
    By gmgundamx7 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 02-28-2007, 04:43 PM

Tags for this Thread