

Basic introduction
The base address updater is a tool used to search for signatures and update offset base addresses. The general usage scenario is: after developing an auxiliary game, the game is upgraded. Manually updating the base address is very troublesome, so this tool is more convenient to search and update the base address.
Function introduction
1. Able to quickly update the base address according to the given feature code
2. Feature code supports fuzzy search. For example: "54 24 10 89 44 24 24 52 ?? ?? 8D 44 24 ?? 20 50 E8", note: the first byte is not allowed to be ambiguous
3. Support updating CALL address
4. Ability to "save" and "read and write" configurations, making it very convenient to manage multiple feature codes.
5. Generate easy constants with one click and use them after updating.
6. Support updating relocation address
How to use
1. After downloading, do not run the software in the compressed package and use it directly. Unzip it first;
2. The software supports both 32-bit and 64-bit operating environments;
3. If the software cannot be opened normally, please right-click and run in administrator mode.
Special instructions
1. When adding feature codes, offset is a crucial parameter. It points to the specific location of the base address.
For example, the feature code in OD is:
[Asm] Plain text viewing Copy code
0547D503 83CD FF or ebp,0xFFFFFFFF
0547D506 89AC24 5C010000 mov dword ptr ss:[esp+0x15C],ebp
0547D50D A1 80EA3B06 mov eax,dword ptr ds:[0x63BEA80] ; base address
0547D512 EB 03 jmp short CryGame.0547D517
0547D514 83CD FF or ebp,0xFFFFFFFF
Then, when adding a feature code, the "signature code" can be filled in with "83 CD FF 89 AC 24 5C 01 00 00 A1 ?? ?? ?? ??", and the offset is: 11, because after searching for the feature code, the offset of 11 bytes is the address of the base address.















Useful
Useful
Useful