diff options
| author | 2026-05-20 14:38:59 -0400 | |
|---|---|---|
| committer | 2026-05-20 14:38:59 -0400 | |
| commit | 36f71c9a83bf8f1afb133fd335ed6778bec55124 (patch) | |
| tree | 3ca71038804b07e6a308610ae6c9bf66078c6573 /Plugin.cs | |
| parent | a3017d55a521afd193c8ab1ee31f9804c44a0940 (diff) | |
| download | NewCamera-36f71c9a83bf8f1afb133fd335ed6778bec55124.tar.gz NewCamera-36f71c9a83bf8f1afb133fd335ed6778bec55124.tar.bz2 NewCamera-36f71c9a83bf8f1afb133fd335ed6778bec55124.zip | |
Document head armor display
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Plugin.cs')
| -rwxr-xr-x | Plugin.cs | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2955,6 +2955,12 @@ namespace NewCamera chestBone1 = 0x0;
chestBone2 = 0x0;
}
+ /*
+ if (partName == "wst")
+ {
+ //MemoryUtil.GetRef<byte>(next + 0x2D0) = hideKnife ? (byte)0xFD : (byte)0xFF;
+ }
+ */
ImGui.Text($"{partName} ({baseAddr:X}, {fullString} @ {addr:X}):");
int parts = MemoryUtil.Read<int>(addr + 0x54C);
nint baseInner = MemoryUtil.Read<nint>(addr + 0xC8);
@@ -3120,7 +3126,7 @@ namespace NewCamera ImGui.Text($"Slinger: {MemoryUtil.Read<int>(player.Instance + 0x13D8C):X}_{MemoryUtil.Read<int>(player.Instance + 0x13D90):X}");
ImGui.Text($"Last Equipped: {lastEquipedId:X}");
- //MemoryUtil.GetRef<byte>(next + 0x2D0) = hideKnife ? (byte)0xFD : (byte)0xFF;
+ // MonsterHunterWorld.exe+11A2967 - cmp byte ptr [rax+001403E1],01
ref byte showHeadArmor = ref MemoryUtil.GetRef<byte>(playerSettings + 0x1403E1);
int showHeadArmorInt = showHeadArmor;
if (ImGui.RadioButton("Show", ref showHeadArmorInt, 0))
|