So it appears with the 1.6.0.0_1983486 update the array of bytes for Dungeons-Win64-Shipping.exe has changed particularly the last byte:
4C 8B 03 48 8D 54 24 30 48 8B C8 48 8B F8 E8
"02" which resulted in the "Not all results found" error. After searching for the array of bytes of "4C 8B 03 48 8D 54 24 30 48 8B C8 48 8B F8 E8", less than 20 records appeared, I disassembled the memory region of each result, one at a time, and added a breakpoint at the beginning of the array and clicked on an item my inventory. If the breakpoint wasn't hit, I knew it wasn't the correct array.
Anyhow long story short, in my case at least, it turns out the new byte is 12. That being said, updating lines 11 through 12 in the table that MichaelJMAD posted to the following worked for me.
Code: Select all
aobscanmodule(INJECT_EquipmentEdit,Dungeons-Win64-Shipping.exe,4C 8B 03 48 8D 54 24 30 48 8B C8 48 8B F8 E8 12) // should be unique
alloc(newmem,$1000,"Dungeons-Win64-Shipping.exe"+87A37B)
Though, I have found that any "graphical" updates as far as the icons go will not update unless you reload the map or exit to the main menu and reload.
If someone else is able to try this and let me know if it also worked for them, it would be appreciated.