Skip to content

Commit

Permalink
3.0.5399.32231
Browse files Browse the repository at this point in the history
added slot to inventory and also updated sig for inventory to handle
edge cases on other machines.
  • Loading branch information
Icehunter committed Oct 14, 2014
1 parent 63027bc commit 23185c6
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FFXIVAPP.Client/Initializer.cs
Expand Up @@ -666,7 +666,7 @@ public static void SetSignatures()
AppViewModel.Instance.Signatures.Add(new Signature
{
Key = "INVENTORY",
Value = "DB0FC93FDB0F49416F1283??FFFFFFFF0000000000000000000000000000000000000000DB0FC93FDB0F49416F1283??FFFFFFFF",
Value = "DB0FC93FDB0F49416F1283??FFFFFFFF00000000??00??00??00??00??00??00??00????DB0FC93FDB0F49416F12833AFFFFFFFF",
Offset = 56
});
}
Expand Down
1 change: 1 addition & 0 deletions FFXIVAPP.Client/Memory/InventoryWorker.cs
Expand Up @@ -196,6 +196,7 @@ private InventoryEntity GetItems(uint address, Inventory.Container type)
container.Items.Add(new ItemInfo
{
ID = id,
Slot = MemoryHandler.Instance.GetByte(itemOffset, 0x4),
Amount = MemoryHandler.Instance.GetByte(itemOffset, 0xC),
SB = MemoryHandler.Instance.GetUInt16(itemOffset, 0x10),
Durability = MemoryHandler.Instance.GetUInt16(itemOffset, 0x12),
Expand Down
2 changes: 1 addition & 1 deletion FFXIVAPP.Client/app.manifest
Expand Up @@ -17,7 +17,7 @@
compatibility then delete the requestedExecutionLevel node.
-->
<!--<requestedExecutionLevel level="asInvoker" uiAccess="false" />-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<!--<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />-->
</requestedPrivileges>
</security>
</trustInfo>
Expand Down
Binary file modified distribution/FFXIVAPP.Client.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion distribution/FFXIVAPP.Client.vshost.exe.manifest
Expand Up @@ -17,7 +17,7 @@
compatibility then delete the requestedExecutionLevel node.
-->
<!--<requestedExecutionLevel level="asInvoker" uiAccess="false" />-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<!--<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />-->
</requestedPrivileges>
</security>
</trustInfo>
Expand Down
Binary file modified distribution/FFXIVAPP.Common.dll
Binary file not shown.
Binary file modified distribution/FFXIVAPP.Updater.exe
Binary file not shown.
Binary file added distribution/FFXIVAPP_3.0.5399.19376.zip
Binary file not shown.
Binary file not shown.

0 comments on commit 23185c6

Please sign in to comment.