So first off I tried doing it the clunky way: comparing base ID's. But then I realised that gems the player had charged didn't change their ID. So an empty soul gem fully charged would still have the base ID of an empty soul gem. The "precharged" gems were not used as replacements when a gem is charged they're merely for loot purposes. If I wanted to find the soul levels I'd have to scan all the player's gems.
So I came up with this neat little bit of coding:
set iSoulLevel to 0 set iItems to GetNumItems Label 1 set iItem to iItem + 1 if (iItem <= iItems) set rSoulGem to GetInventoryObject iItem if (rSoulGem.IsSoulGem == 1) set iSoulLevel to GetSoulLevel if (iSoulLevel > iBestSoul) set rBestGem to rSoulGem set iBestSoul to iSoulLevel endif endif GoTo 1 else PrintToConsole "Found a level %.0f soul", iBestSoul endif
Except that iBestSoul always returns zero, because GetInventoryObject gets the object's base version and not the actual inventory object itself and it's relevant properties. I've been scanning and scanning the OBSE documentation and CS but come up empty. How would I go about scanning through the individual *references* in someone's inventory in order to determine which soul gem to use?