0xc00007b
Uzman Üye
1C8 entitysindeki EventManagerQueue'i devredışı bırakın.
Video:
Structs:
Video:
Embedded media from this media site is no longer available
Structs:
Kod:
// E8 ? ? ? ? 48 8B F0 48 85 C0 74 8B
; __int64 __fastcall FindFxComponent(__int64 lpEventManager, __int64 CompType)
C++:
// 48 8B C4 F3 0F 11 58 ? 4C 89 40 18
void **__usercall UnknownFx( )
{
if ( !*(lpFxStun + 0x40) )
goto exit_branch;
C++:
BOOL NoFlash( UINT_PTR lpLocalPlayer )
{
UINT_PTR lpEventManager = core::g_pManager->ReadMemory<UINT_PTR>( lpLocalPlayer + 0x30 );
if ( !_VALID( lpEventManager ) )
{
DEBUGOUT( "[!] lpEventManager dogrulanamadi: %I64X\n", lpEventManager );
return FALSE;
}
UINT_PTR lpFxArray = core::g_pManager->ReadMemory<UINT_PTR>( lpEventManager + 0x30 );
if ( !_VALID( lpFxArray ) )
{
DEBUGOUT( "[!] lpFxArray dogrulanamadi: %I64X\n", lpFxArray );
return FALSE;
}
const UINT uStunIndex = 5;
UINT_PTR lpFxStun = core::g_pManager->ReadMemory<UINT_PTR>( lpFxArray + ( uStunIndex * sizeof( PVOID ) ) );
if ( !_VALID( lpFxArray ) )
{
DEBUGOUT( "[!] lpFxStun dogrulanamadi : %I64X\n", lpFxStun );
return FALSE;
}
UINT8 uDisabled = 0;
core::g_pManager->WriteMemory( lpFxStun + 0x40, &uDisabled, sizeof( UINT8 ) );
return TRUE;
}