From aacec14d3e37285015a20211646fd19a1856deb6 Mon Sep 17 00:00:00 2001 From: specialz Date: Fri, 31 Jul 2026 07:45:46 +0800 Subject: [PATCH] fix: force success path after online verify regardless of result - Patch at 0xF90FC: replace 'test al,al; jnz' with 'mov al,1; jmp' - Forces success path (write registry) even when server rejects - 8 patches total: 1x return 1 + 5x NOP + 1x jz->jmp + 1x force success --- honeycam_patcher.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/honeycam_patcher.py b/honeycam_patcher.py index 9f3eea4..908f375 100644 --- a/honeycam_patcher.py +++ b/honeycam_patcher.py @@ -81,6 +81,8 @@ PATCHES = [ 'jz -> jmp (skip lm.dll key validation)'), (0x0F911A, b'\x0F\x84\x9A\x02\x00\x00', b'\x90\x90\x90\x90\x90\x90', 'NOP: BADF3300 error exit (continue offline path)'), + (0x0F90FC, b'\x84\xC0\x0F\x85\x17\x01\x00\x00', b'\xB0\x01\xE9\x18\x01\x00\x00\x90', + 'Force success after online verify (mov al,1; jmp)'), ]