0 of 0

File information

Last updated

Original upload

Created by

electricghoti

Uploaded by

electricghoti

Virus scan

Safe to use

About this mod

Adds ability to choose Turn Undead and related feats for Favored Souls. Also allows for improved Turning power with levelup.

Permissions and credits
===What this mod does===
Adds the Turn Undead feat upon taking a level of Favored Soul, just like a Cleric. Favored Souls also have their Turn Undead power improve with each level, rather than forever be considered a level 1 Cleric.

===How it works===
A file with a modified FS class feat 2da adds the Turn Undead to characters on first level.
A modified stock Turn Undead script included a function to add FS levels to Cleric levels for purposes of calculating the "turn level."

===Conflicts===
Any script that modifies "nw_s2_turndead" will conflict. This is pretty much a workaround at best, and this is one of my first attempts to modify a vanilla script.
-------To edit the script yourself:--------
*Open Toolset > Ctrl +shift + O (to open Conversation/Script dialogue)
*Search for "turndead"
*Select the script in location NWN2 > Data > Scripts_x2.
*Add "int nFavoredSoulLevel = GetLevelByClass(CLASS_TYPE_FAVORED_SOUL);" to int declarations under void main()
* Add if((nFavoredSoulLevel) > 0)
{
nClassLevel += (nFavoredSoulLevel);
nTurnLevel += (nFavoredSoulLevel);
}
below "int nClassLevel"

===Installation===
Unzip/unrar into your My Documents > NWN2 > Override folder

===Requirements===
Pretty sure it requires Storm of Zehir since I used that updated Turn Undead script. I'm not entirely sure if scripts are backwards compatible.