Monday, July 1, 2013

CrossFire Alpha appearence editor

Now, i will show you how to show a ghost in a crossfire

We still need C++ and know how to make an undetected dll, you can look in my post.

First, what is findpattern?

FindPattern is a function, you can use it to find binary array in your module, i have found it

Here.

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;
}

Very easy, i have done my code, look

WallHackArray = FindPattern(0x400000,0xFFFFFF,(BYTE *)"\x75\xFF\x83\x0D\xFF\xFF\xFF\xFF\x01\xB8\xFF\xFF\xFF\xFF\xE8","x?xx????xx????x"); // this array to get the DrawPrimivite

SeeGhostPoint = *(DWORD *)(WallHackArray + 0xA) + 0xB8; // This stack call alpha appearence

Now define your function

Normal value of seeghostpoint is 5
To show it you can push 14

if(SeeGhost)
{
*(DWORD *)(SeeGhostPoint) = 14;
}
else
{
*(DWORD *)(SeeGhostPoint) = 5;
}

Nice, keep it up :D

Related Posts:

  • CrossFire Alpha appearence editorNow, i will show you how to show a ghost in a crossfire We still need C++ and know how to make an undetected dll, you can look in my post. First, wh… Read More
  • Dota Pro [ Download DotA Pro - Hack map DotA ] Chức năng:  - Chỉnh hotkey DotA - Warcraft 3 - Reveal Unit On Mainmap - Remove Flog On M… Read More
  • How to create an undetected dllHere is the guide to create an undetected dll for anygame First, you need Visual Studio, can download it on microsoft.com Open VS, create new projec… Read More
  • Preview Midfunction hookHello, today we will learn how to make an midfunction hooking For all beginner, you should test it with d3d9 cause d3d9.dll have the same address for… Read More
  • Global hookGlobal hook is injected your code to all process and all executable are working in your system How to work? There are 2 types in this we have 15 sm… Read More

0 comments:

Post a Comment