Player Resource Consortium

Neverwinter Nights => General Discussion => Topic started by: Necro on August 04, 2013, 03:06:01 PM

Title: Animal domain spells not working
Post by: Necro on August 04, 2013, 03:06:01 PM
I have a Shaman (4) - Witch (5) - Mystic Theurge (9).  He has the Storm and Animal domains.  The storm domain spells work fine, but the animal domain spells do not.  According to the domain description, I should have Cats Grace (2), Hold Animal (3), Dominate Monster (8), Shapechange (9).  My second level animal domain casts hold animal instead of cats grace.  Is there a change to the animal domain that has not been updated in the description?

NOTE:  The one level higher animal summons of the animal domain works fine.
Title: Re: Animal domain spells not working
Post by: Loggy on August 12, 2013, 11:40:13 AM
Looking at the file (prc_domains.2da) in question, the in-game description doesn't match what is actually set:
Code: [Select]

  Label         Name     Level_1 Level_2 Level_3 Level_4 Level_5 Level_6 Level_7 Level_8 Level_9 CastableFeat
0  AIR           5610     3085    ****    11      75      ****    14      3854    ****    48      1           
1  ANIMAL        5611     ****    81      43      177     ****    ****    ****    182     161     0           

In short, the actual domain spells you have are:

2: Hold animal
3: Dominate animal
4: Summon creature IV
8: Summon creature VIII
9: Shapechange

I suppose you could change it to better represent the description by changing that file in prc_2das.hak with these:

Code: [Select]
   Label         Name     Level_1 Level_2 Level_3 Level_4 Level_5 Level_6 Level_7 Level_8 Level_9 CastableFeat
0  AIR           5610     3085    ****    11      75      ****    14      3854    ****    48      1           
1  ANIMAL        5611     ****    13      81      ****     ****    ****    ****    44     161     0           

I haven't found the original domain source, so I don't know which one is correct.
Title: Re: Animal domain spells not working
Post by: Necro on August 12, 2013, 10:44:38 PM
Thanks Loggy!
Title: Re: Animal domain spells not working
Post by: xwarren on August 13, 2013, 12:31:31 PM
This was my attempt to bring NWN domains closer to PnP. I haven't finished this project yet, and I didn't realized I have already committed  changes to domain casting feats (I thought I've disabled it after testing, sorry). The attached file should fix this problem.
Title: Re: Animal domain spells not working
Post by: Necro on August 17, 2013, 10:35:36 AM
Thanks Loggy and XWARREN!!