when you look at the unlimited rings/amulet mods out there, they all seem to manually remove the item property ('uses ring-slot' / 'uses amulet-slot') which is suboptimal for a number of reasons:
- only vanilla items are handled,
- creating and maintaining such a mod is tedious,
- slot dependence removal plays havoc with scripted attempts to identify an object by the slot it uses (item keywords are not reliable).
Can you think of a way to shortcut the slot-occupation mechanism dynamically using Papyrus, for example something like
- strip the item slot dependence in an OnEquip block or
- prevent the game from unequipping a previous ring when equipping a new one?

Any ideas on alternatives?