diff options
| -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))
|