mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-16 14:27:44 +08:00

* feat: initial battleye bypass * disable force kick toggle too * fix: fix pointers version * enable exclude modders toggle by default to prevent auto-kicks
13 lines
166 B
C++
13 lines
166 B
C++
#include "hooking/hooking.hpp"
|
|
|
|
namespace big
|
|
{
|
|
bool hooks::network_can_access_multiplayer(void* a1, int* error)
|
|
{
|
|
if (error)
|
|
*error = 0;
|
|
|
|
return true;
|
|
}
|
|
}
|