Krijanowsky Posted March 22, 2021 Share Posted March 22, 2021 (edited) I need help in this, because I searched through the wholle CK and wasn't able to find.I am trying to modify the draugr death item list to put in some head trophies I made, but I found only one death item list, for the base draugr. Is this it? How can I add heads for the Death Lord, Restless, Scourge, thrall and Death Overlord draugrs, is this is possible at all?Really apreciate any tips. Edited March 22, 2021 by Krijanowsky Link to comment Share on other sites More sharing options...
maxarturo Posted March 22, 2021 Share Posted March 22, 2021 Yeap, there is only 1 Death Item for the majority of actors. You can do this by 2 ways: 1) Create unique Death Items lists for each different actor. * But this will be overwritten by any other mod that loads after yours. 2) Add a simple script to all Draugr Base Actors that will add your Misc Heads in their inventory when the actor dies. Link to comment Share on other sites More sharing options...
Krijanowsky Posted March 22, 2021 Author Share Posted March 22, 2021 Since I'm much like Jon Snow in scripting (know nothing), I'll try to create the specific death items list and add them to the respective types of draugr.Thank you very much for the fast and straightforward reply. Link to comment Share on other sites More sharing options...
maxarturo Posted March 22, 2021 Share Posted March 22, 2021 Give it a unique name and don't use the one in the script bellow. Scriptname AddMiscOnDeath extends Actor MiscObject Property MiscToAdd Auto {The Misc Item to add when this actor dies} EVENT OnDeath(Actor killer) Self.AddItem(MiscToAdd, 1) ENDEVENT Link to comment Share on other sites More sharing options...
Krijanowsky Posted March 22, 2021 Author Share Posted March 22, 2021 Give it a unique name and don't use the one in the script bellow. Scriptname AddMiscOnDeath extends Actor MiscObject Property MiscToAdd Auto {The Misc Item to add when this actor dies} EVENT OnDeath(Actor killer) Self.AddItem(MiscToAdd, 1) ENDEVENT Awesome, thank you. I was trying to add the newly created death item list but CK doesn't allow me to edit the draugrs' list ( https://ibb.co/YXKsgmb )First, I need to break this wall, and then I'll try to use the script, since CK doesn't allow me to add one neither. Link to comment Share on other sites More sharing options...
Krijanowsky Posted March 22, 2021 Author Share Posted March 22, 2021 Nervermind, I figured out where the actors base for each type are. I am a newbie yet, so I tend to let some things pass right in front of me.Anyways, thank you very much! Link to comment Share on other sites More sharing options...
Recommended Posts