silhouett Posted April 1, 2018 Share Posted April 1, 2018 I have a question about killing and resurrecting an NPC if I take off the head of an NPC , they die... how in papyrus script how do I bring them back to life correctly ? Resurrect seems to bring them back with their head floating above them. ResetHealthAndLimbs does not seem to fix this. Thanks for any help Link to comment Share on other sites More sharing options...
kitcat81 Posted April 4, 2018 Share Posted April 4, 2018 (edited) You can only reset the actor to repair his 3d state. But it's only suitable for unique actors. Leveled NPC will change their look or even gender after reset. If MyActor.IsDismembered() MyActor.Reset() MyActor.MoveTo(SomeReference) ; actors can respawn too far from their original location, so you need to move them to the place where you need them EndIf Edited April 4, 2018 by kitcat81 Link to comment Share on other sites More sharing options...
silhouett Posted April 29, 2018 Author Share Posted April 29, 2018 Thanks Kitcat81 Link to comment Share on other sites More sharing options...
Recommended Posts