I tried submitting this command on my alt as well which has 0/215 - and I get the same UI error. So the 1/215 I’m making assumption on my main toon isn’t an item actually in catalog then? 🤷♂️
Try this command:/script d(GetNumBagUsedSlots(BAG_BACKPACK))
It should return a number. That should be the number of used slots. If it is 0 then the 1/215 is a UI error. If It's 1 then there is an error in the saved data for INVENTORY_BACKPACK - it could be a corruption that ZOS would need to fix.
Also try putting 215 items into your backpack. See if you get 215/215 for the 214th and 215/215 or 216/215 for the 215th
Ty for this! Yea I typed it in and it returned with 1
Yeah if it's showing 1 and the script that code65536 provided is showing nil then it sounds like a corruption in the underlying INVENTORY_BACKPACK data.
See if you can fill the bags up like I said. It may be filling them all then emptying them again could fix it.
I tried submitting this command on my alt as well which has 0/215 - and I get the same UI error. So the 1/215 I’m making assumption on my main toon isn’t an item actually in catalog then? 🤷♂️
Try this command:/script d(GetNumBagUsedSlots(BAG_BACKPACK))
It should return a number. That should be the number of used slots. If it is 0 then the 1/215 is a UI error. If It's 1 then there is an error in the saved data for INVENTORY_BACKPACK - it could be a corruption that ZOS would need to fix.
Also try putting 215 items into your backpack. See if you get 215/215 for the 214th and 215/215 or 216/215 for the 215th
Ty for this! Yea I typed it in and it returned with 1
Yeah if it's showing 1 and the script that code65536 provided is showing nil then it sounds like a corruption in the underlying INVENTORY_BACKPACK data.
See if you can fill the bags up like I said. It may be filling them all then emptying them again could fix it.

I tried submitting this command on my alt as well which has 0/215 - and I get the same UI error. So the 1/215 I’m making assumption on my main toon isn’t an item actually in catalog then? 🤷♂️
Try this command:/script d(GetNumBagUsedSlots(BAG_BACKPACK))
It should return a number. That should be the number of used slots. If it is 0 then the 1/215 is a UI error. If It's 1 then there is an error in the saved data for INVENTORY_BACKPACK - it could be a corruption that ZOS would need to fix.
Also try putting 215 items into your backpack. See if you get 215/215 for the 214th and 215/215 or 216/215 for the 215th
Ty for this! Yea I typed it in and it returned with 1
Yeah if it's showing 1 and the script that code65536 provided is showing nil then it sounds like a corruption in the underlying INVENTORY_BACKPACK data.
See if you can fill the bags up like I said. It may be filling them all then emptying them again could fix it.
Got home and tried this. I crafted 215 superb glyphs of magicka.
It would not let me craft 215 outright it said not enough room, so I banked few, crafted enough and as I was trying to fill inventory it would not let me take last one. So def stuck 🫥
Dang. Was hoping it might over-write the corrupt slot. Are you willing to empty your inventory again and try one last script?
/script for Slot in ZO_IterateBagSlots(BAG_BACKPACK) do local ItemLink = GetItemLink(BAG_BACKPACK, Slot) if ItemLink ~= "" then d(ItemLink) end end