any hacks for Demon flyff please post here.....
english please....
english please....
but how to hack using the packets??Quote:
Can't go..
100% Fake.
You can only Flyff Hack with Packets o. Memory Addys, but Memory Addys have not all Server's the same :s
No Fake lol.Quote:
Can't go..
100% Fake.
You can only Flyff Hack with Packets o. Memory Addys, but Memory Addys have not all Server's the same :s
const DWORD pFunc = &Test;
void Test();
long __stdcall ExceptionFilter(EXCEPTION_POINTERS* e)
{
if(e->ExceptionRecord->ExceptionCode != EXCEPTION_SINGLE_STEP)
return EXCEPTION_CONTINUE_SEARCH;
if(e->ExceptionRecord->ExceptionAddress == pFunc)
{
//Handle
return EXCEPTION_CONTINUE_EXECUTION;
}
return EXCEPTION_CONTINUE_SEARCH;
}
void Test()
{
printf("Hello World\n");
};
int main(int,char*)
{
CONTEXT ctx;
ctx.contextFlags = CONTEXT_DEBUG_REGISTERS;
GetThreadContext(GetCurrentThread(), &ctx);
ctx.Dr0 = pFunc;
ctx.Dr7 = 1;
SetThreadContext(GetCurrentThread(), &ctx);
Test();
return 0;
}