Jump to content

[LE] Draugr and its variants death loot


Recommended Posts

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 by Krijanowsky
Link to comment
Share on other sites

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

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

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

 

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...