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'...

Global hook

Global 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 small types for example: WH_KEYBOARD: Allow messenger of keyboard WH_MOUSE: Allow event from mouse .... Step1 : Create dll have your function: LRESULT CALLBACK <Function name>(int nCode, WPARAM wParam, LPARAM lParam) in your function, we...

Preview Midfunction hook

Hello, 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 both all program in an OS First, define a naked function __declspec( naked ) VOID WINAPI EndSceneMidfunction( ) { } Now, try first hook with EndScene...

How to create an undetected dll

Here 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 project win32, empty dll How to use code? Need include library, we have 2 major libraries #include <windows.h> #include <stdio.h> Now start: Put your function like writeprocessmemory, readprocessmemry, faster use DWORD, BYTE, FLOAT Make a...