If its not scuffed its not reboot

This commit is contained in:
Gray
2024-03-18 21:35:01 -04:00
parent acb311c643
commit ef97a84822
10 changed files with 69 additions and 15 deletions

View File

@@ -611,12 +611,11 @@ std::vector<uint64> Addresses::GetFunctionsToNull()
toNull.push_back(Memcury::Scanner::FindStringRef(L"Widget Class %s - Running Initialize On Archetype, %s.").ScanFor({ 0x40, 0x55 }, false).Get()); // Widget class
}
if (Engine_Version == 422
|| Engine_Version == 423
|| Engine_Version == 424 // guessed
if (Engine_Version >= 422
&& Fortnite_Version <= 12.00 // guessed
)
{
// This sig is valid on 7.40, 8.51, 11.31 (3 refs), but on 12.41 it has 1 ref which isn't widget class
// This sig is valid on 7.40, 8.51, 11.31 (3 refs), but on 12.41 it has 1 ref which isn't widget class (12.00 is right).
// Also this isn't the actual function but something the widget class thing calls
toNull.push_back(Memcury::Scanner::FindPattern("48 89 5C 24 ? 57 48 83 EC 30 48 8B 41 28 48 8B DA 48 8B F9 48 85 C0 74 34 48 8B 4B 08 48 8D").Get()); // widget class
}