Changed AOB scan function name
This commit is contained in:
@@ -56,7 +56,7 @@ extern "C" __declspec(dllexport) void SetFixEnabled(bool enabled)
|
||||
// === AOB Scans ===
|
||||
if (!FOVAddress) {
|
||||
constexpr auto FOVPattern = make_obfuscated<0x4A>("E8 ?? ?? ?? ?? C5 FA ?? ?? ?? ?? ?? ?? C5 F8 ?? ?? E8 ?? ?? ?? ?? C5 7A");
|
||||
FOVAddress = Memory::aob_scan(gameExecutable, FOVPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
FOVAddress = Memory::AOBScan(gameExecutable, FOVPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
//"tlou-i.exe" + 48A5B5 - C5 F8 11 41 10 - vmovups[rcx + 10], xmm0
|
||||
//"tlou-i.exe" + 48A5BA - 48 8B CA - mov rcx, rdx
|
||||
//"tlou-i.exe" + 48A5BD - E8 BE 0D 0B 00 - call "tlou-i.exe" + 53B380
|
||||
@@ -71,7 +71,7 @@ extern "C" __declspec(dllexport) void SetFixEnabled(bool enabled)
|
||||
}
|
||||
if (!CameraAddress) {
|
||||
constexpr auto CameraPattern = make_obfuscated<0x4A>("C5 FA ?? ?? ?? ?? ?? ?? C5 FA ?? ?? ?? C5 22 ?? ?? ?? C4 C1 ?? ?? ?? C5 FA ?? ?? ?? C5 7A");
|
||||
CameraAddress = Memory::aob_scan(gameExecutable, CameraPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
CameraAddress = Memory::AOBScan(gameExecutable, CameraPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
//"tlou-i.exe" + 693727 - C5 FA 11 56 0C - vmovss[rsi + 0C], xmm2
|
||||
//"tlou-i.exe" + 69372C - 48 8B 07 - mov rax, [rdi]
|
||||
//"tlou-i.exe" + 69372F - C5 FA 10 05 95 5E EC 02 - vmovss xmm0, ["tlou-i.exe" + 35595CC]
|
||||
@@ -86,7 +86,7 @@ extern "C" __declspec(dllexport) void SetFixEnabled(bool enabled)
|
||||
}
|
||||
if (!SharpnessAddress) {
|
||||
constexpr auto SharpnessPattern = make_obfuscated<0x4A>("C5 FA ?? ?? ?? ?? ?? ?? 8B 86 ?? ?? ?? ?? 89 87 ?? ?? ?? ?? 0F B6 ?? ?? ?? ?? ?? 89");
|
||||
SharpnessAddress = Memory::aob_scan(gameExecutable, SharpnessPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
SharpnessAddress = Memory::AOBScan(gameExecutable, SharpnessPattern.decrypt(), PAGE_EXECUTE_READ);
|
||||
//"tlou-i.exe" + 1F6B4CF - 75 04 - jne "tlou-i.exe" + 1F6B4D5
|
||||
//"tlou-i.exe" + 1F6B4D1 - C5 C8 57 F6 - vxorps xmm6, xmm6, xmm6
|
||||
//"tlou-i.exe" + 1F6B4D5 - C5 FA 11 B7 C4 02 00 00 - vmovss[rdi + 000002C4], xmm6
|
||||
|
||||
Reference in New Issue
Block a user