mov ebp, esp
-
Автор темы
- #1
this has been public since 2018 and i saw some guy repost a src with just an obs bypass so here u go
don't forget to disable "capture game overlays" on obs
won't work on shadowplay
go to ur endscene hook
paste this
enjoy
don't forget to disable "capture game overlays" on obs
won't work on shadowplay
go to ur endscene hook
paste this
C++:
static uintptr_t gameoverlay_return_address = 0;
if( !gameoverlay_return_address ) {
MEMORY_BASIC_INFORMATION info;
VirtualQuery( _ReturnAddress( ), &info, sizeof( MEMORY_BASIC_INFORMATION ) );
char mod[ MAX_PATH ];
GetModuleFileNameA( ( HMODULE )info.AllocationBase, mod, MAX_PATH );
if( strstr( mod, "gameoverlay"))
gameoverlay_return_address = ( uintptr_t )( _ReturnAddress( ) );
}
if( gameoverlay_return_address != ( uintptr_t )( _ReturnAddress( ) ) )
return end_scene_o( device );
Пожалуйста, авторизуйтесь для просмотра ссылки.