Wow, this is so great ! I'v been struggling for DAYS with this "NPC's in underwear" problem. I felt I needed resurrecting powers in Skyrim, after the sweet old couple that lives at Salvius farm accidentally got killed in a dragon attack as I was passing by. I used the console cheat to resurrect them, and they happily trotted off to their garden, peacefully working together again. Bliss... :-)So I thought it would be nice to have a spell to do just that. (what's the use of being the Dragonborn if you can't even save people ?) Actually the spell works quite nicely now, it will even resurrect enemies you had no intention to kill (plus make them run away from you for 30 seconds, so you don't have to kill them again, and can safely get out of the premises).Then I thought it could also be useful to resurrect followers, and that's where I ran into the "underwear" problem. Actually I did manage to have followers keep their complete inventory (thanks to the "switch chest" trick), but they won't equip their outfit, until I walk into a city with them, where they will finally change into more fitting clothing. Somewhere I read I could use Reset() and MoveTo the player coordinates to simulate entering a city, but that doesn't seem to work either (?). So now I feel the solution is at hand, thanks to Formlists for equipped gear!There's just one problem I can't work out: the code that IsharaMeradin proposes here seems meant to be attached to a specific actor. But there are plenty of potential followers in the game. So must I put a script on each of them, to update their formlist with what goes in and out of their inventory ? Right now, my script is attached to the MagicEffect of the spell (Scriptname.... extends ActiveMagicEffect).And to access the NPC I'm using the target of the effect: Event OnEffectStart(Actor target, Actor caster) target.Resurrect() etc. So, would there be way to "read" the equipped items of this target, just before resurrection, and put them in a Formlist? Any tips would be greatly appreciated !