HITMAN 3 - Modding Thread

No Yellow Shortcut Frames:






Now… for someone to “fix” the doors, so they work like regular doors (Maybe even locked from one side?). Curious if that will be (is already?) possible with the ZHM Mod SDK? :thinking:

Notes:
These are all the same .PRIM and .PRIM.meta files renamed. I used a 3 vertice model as the base and made it invisible (I’m pretty sure I did. :crossed_fingers:). You can easily swap out an existing .PRIM by using these files. All you gotta do is rename .PRIM and .PRIM.meta to the one you want to replace, open the .PRIM.meta in a hex editor and replace the first 8 bytes with the new ID.
e.g. 00B39BD7047ADCCE becomes CE DC 7A 04 D7 9B B3 00.

Notepad++ script:
Find what:
^(.{2})(.{2})(.{2})(.{2})(.{2})(.{2})(.{2})(.{2})
Replace with:
\8 \7 \6 \5 \4 \3 \2 \1
Search mode:
Regular expression

This info can also be used to switch out one PRIM for another.

22 Likes