This is my video tutorial on scanning memory patterns to find addresses in memory that change during recompilation.
The pattern scanning function:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | bool bDataCompare(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 dwFindPattern(DWORD dwAddress,DWORD dwLen, BYTE *bMask, char * szMask) { for(DWORD i=0;i<dwLen;i++) if( bDataCompare( (BYTE*)( dwAddress+i ),bMask,szMask) ) return (DWORD)(dwAddress+i); return NULL; } |
SigMaker 0.3 by P47R!CK
Enjoy.
findpattern function for C# users: http://www.gamedeception.net/threads/14470-FindPattern-in-C
Hello there!
I would really like to check out this video, if you could reupload it to somewhere , example youtube, i would really really appreciate!
Thanks!
The link is posted in the forum. It is not real video but a flash tutorial. Right now I am having problems with the server though and I am trying to fix it.