Player Resource Consortium

 

Author Topic: Animal domain spells not working  (Read 3936 times)

0 Members and 1 Guest are viewing this topic.

August 04, 2013, 03:06:01 PM
  • Associate
  • ***
  • Posts: 145
  • Karma: +1/-0
    • View Profile

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.


August 12, 2013, 11:40:13 AM
Reply #1
  • Jr. Associate
  • **
  • Posts: 56
  • Karma: +1/-0
  • New Member
    • View Profile

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.


August 12, 2013, 10:44:38 PM
Reply #2
  • Associate
  • ***
  • Posts: 145
  • Karma: +1/-0
    • View Profile



August 13, 2013, 12:31:31 PM
Reply #3
  • Hero Member
  • *****
  • Posts: 1439
  • Karma: +27/-0
  • Gender: Male
    • View Profile

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.


August 17, 2013, 10:35:36 AM
Reply #4
  • Associate
  • ***
  • Posts: 145
  • Karma: +1/-0
    • View Profile

Thanks Loggy and XWARREN!!