Results 1 to 7 of 7

Hybrid View

  1. #1
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106

    Find patern + ltclient

    I'm trying to get the address of the LTC with Find patern.

    Only when I searth it I get this output:
    268527111

    How can I Put this in my push to consol function?

    (I never used patern searth )

    Edit:
    This is not Combat Arms output I'm testing.
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

  2. #2
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Show us the pattern and how you are using it, we can't help you without seeing any code.

  3. #3
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    Sorry, forgot to post the pattern code:

    Code:
    //I did't code this part
    bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    {
    	for(;*szMask;++szMask,++pData,++bMask)
    		if(*szMask=='x' && *pData!=*bMask)   return 0;
    	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;
    }
    //end
    Code:
    //searth
    
    	afje = FindPattern(mmd, 0xc18000, (PBYTE)"\x8B\x15\x00\x00\x00\x00\x8B\x82\x00\x00\x00\x00\x68\x00\x00\x00\x00\xFF\xD0\x83\xC4\x04", "xx????xx????x????xxxxx");
    //end
    Edit findpa + compaire is from topbase

    Memcopy works
    0040336C

    Only that is not the good ad :P haha
    Last edited by lauwy; 08-26-2010 at 08:33 PM.
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

  4. #4
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored
    I bet this question for cf

  5. #5
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    sst :P haha, it almost work.
    I only get the wrong ad :P

    Edit:
    IT WORKS!!!
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

  6. #6
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored
    haha, i knew it

  7. #7
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    Only crossfire gives an error :P
    But I can find now the add :P
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

Similar Threads

  1. i NEED help on how to Find The Ltclient For Combat Arms na
    By Angel025 in forum Combat Arms Coding Help & Discussion
    Replies: 4
    Last Post: 09-05-2011, 10:27 AM
  2. [Solved]help me find the LTClient
    By guidogol in forum CrossFire Help
    Replies: 6
    Last Post: 02-26-2011, 06:05 PM
  3. How to find the ltclient
    By visualmaster in forum Combat Arms EU Hack Coding/Source Code
    Replies: 2
    Last Post: 01-14-2011, 10:11 AM
  4. LtClient Ca eu finding
    By coogle007 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 9
    Last Post: 08-18-2010, 09:06 AM
  5. [Help] Finding LTClient
    By Sixx93 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 6
    Last Post: 08-03-2010, 07:46 PM