- Status
- Offline
- Joined
- Mar 3, 2026
- Messages
- 546
- Reaction score
- 7
Dug into the old SAGE engine binaries again to handle the visibility limits in Zero Hour. If you are tired of the shroud blocking your map awareness, here are the updated offsets to force a clean mini-map.
SAGE Engine Memory Modification
This is a straight-up byte patch targeting the UI radar logic. We are manipulating the rendering flags for the mini-map blips and the overlay itself. You need to apply both sequences to get the intended effect.
Deployment & Tactical Notes
Since this is an internal memory modification, it is practically invisible to the non-existent server-side checks of these older RTS titles, but keep it clean if you are playing on community patches with custom AC.
Anyone found the specific offsets for the actual viewport fog of war (not just the mini-map) in this build yet?
SAGE Engine Memory Modification
This is a straight-up byte patch targeting the UI radar logic. We are manipulating the rendering flags for the mini-map blips and the overlay itself. You need to apply both sequences to get the intended effect.
Patch 1: Show Fogged Blips
RVA:
Original bytes:
Patched bytes:
(Note: NOPing the conditional jump to force blip rendering even in fog)
Patch 2: Hide Minimap Shroud Overlay
RVA:
Original bytes:
Patched bytes:
(Note: Changing JZ to JMP to bypass the shroud render check for the UI element)
RVA:
Code:
0x003C082D
Code:
7F 70
Code:
90 90
Patch 2: Hide Minimap Shroud Overlay
RVA:
Code:
0x003C0BBC
Code:
74 24
Code:
EB 24
Deployment & Tactical Notes
- These are raw RVAs for the main executable. Adjust accordingly if you are dealing with specific cracked versions or different entry points.
- Both patches are mandatory. If you only apply the blip patch, the shroud might still visually obscure them; if you only patch the shroud, you might just see an empty map without unit data.
- Works for both vanilla Generals and the Zero Hour expansion as they share the core engine architecture.
Since this is an internal memory modification, it is practically invisible to the non-existent server-side checks of these older RTS titles, but keep it clean if you are playing on community patches with custom AC.
Anyone found the specific offsets for the actual viewport fog of war (not just the mini-map) in this build yet?