fix: don't force host token spoofing (#25)
Some checks are pending
Nightly Build / Build Nightly (push) Waiting to run
Nightly Build / Recreate Release (push) Blocked by required conditions
Nightly Build / Check Recent Commit (push) Successful in 1m4s

This commit is contained in:
Mr-X-GTA 2024-10-24 19:35:21 +02:00 committed by GitHub
parent f844e77a0c
commit 56b12ffc42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 15 deletions

View File

@ -32,7 +32,6 @@ namespace big
void backend::loop()
{
*g_pointers->m_gta.m_minority_report = "POGROM"_J;
bypass_battleye();
for (auto& command : g_bool_commands)

View File

@ -419,8 +419,6 @@ namespace big
functions::get_last_keyboard_state m_get_last_keyboard_state;
PVOID m_network_can_access_multiplayer;
uint32_t* m_minority_report;
};
#pragma pack(pop)
static_assert(sizeof(gta_pointers) % 8 == 0, "Pointers are not properly aligned");

View File

@ -1988,15 +1988,6 @@ namespace big
{
g_pointers->m_gta.m_network_can_access_multiplayer = ptr.add(10).rip().as<PVOID>();
}
},
// Minority Report
{
"MR",
"44 8D 40 03 48 8D 0D",
[](memory::handle ptr)
{
g_pointers->m_gta.m_minority_report = ptr.add(7).rip().as<uint32_t*>();
}
}
>(); // don't leave a trailing comma at the end

View File

@ -138,9 +138,6 @@ namespace big
{
for (int i = 0; i < token_spoof_types.size(); i++)
{
if (i == 0)
ImGui::BeginDisabled(); // this is now required due to battleye
if (ImGui::Selectable(g_translation_service.get_translation(token_spoof_types[i]).data(), i == g.session.spoof_host_token_type))
{
g.session.spoof_host_token_type = i;