forums | blogs | polls | tutorials | downloads | rules | help

Add new comment

Kathy what priority did you give your mod? Some of the oddities like freezing when revived is installed could be that the revived animations are taking priority over the ones given to the dwarf girl. You might try re-tanking your mod at the maximum priority which is 35767. This will force the animations given to dwarf girl to take priority over revived. Also since the Dwarf Girl is just the DS1 male dwarf with a female head this could be causing the issues with hair ribbons and such. In her template:

[t:template,n:base_pm_dwarfgirl]
{
  category_name = "1W_character";
  doc = "Base template for dwarf party members based on the dwarf.";
  specializes = base_dwarfgirl;
  [actor]
  {
    can_level_up = true;
    race = human; You might try changing this to be race = dwarf however this most likely will not help
    is_male = false;  I believe OC specified that the hair ribbons where female only therefore you might change is_male = false; to is_female = true;

I would first try changing the priority such that it is higher than revived. Check to see if this fixes the freezing issues. If it does not help it is not necessary to change it back, just leave it. Then try changing is_male = false; to is_female = true; as this might allow the hair ribbons to work. If it does not then do change it back. you can modify the template as follows: // before the line is_male = false; then add on the next line is_female = true; as the // removes the item from being active in the template.

Elf