Help! How to skip class on patch imgui module ?

Rizarudesu

Platinian
I found the offset and hex code for the class adbConnectDetect(), and I am attaching them below:

Code:
Hex code: F7 5B DB A9 F5 53 01 A9 F3 7B 02 A9 56 D3 00 F0
Offset: 0x13B43A0

How can I disable the function of the adbConnectDetect() class in PATCH(offset, hexcode)?
 
Work but cannot connect the server. How to fix this ?

Sample code patch

Code:
/Il2Cpp: Use RVA offset
    PATCH(targetLibName, str2Offset("0x13B43A0"), "C0035FD6"); //xigncode callback
    PATCH(targetLibName, str2Offset("0x13E4C6C"), "C0035FD6"); //adbdebugger
    PATCH(targetLibName, str2Offset("0x13E4EA4"), "C0035FD6"); //vpndetect

Screenshot
 
Back
Top Bottom