Player Resource Consortium
Neverwinter Nights => General Discussion => Topic started by: Necro on May 17, 2011, 10:29:17 PM
-
Is there a place that has a description of what the switches do? I want to know what the three TRUENAMER switches do.
-
Is there a place that has a description of what the switches do? I want to know what the three TRUENAMER switches do.
All switches should be in prc_inc_switches.nss (prc_include.hak)
Here are those for truenaming:
/******************************************************************************\
* Truenaming switches *
\******************************************************************************/
/**
* Sets the CR Multiplier for Evolving Mind utterances
* This is divided by 100 to get a float.
* Ex: To multiply by 1.5, set this value to 150
*
* The formula used is (CR * Multiplier) + 15
*
* defaults to PnP: (CR * 2) + 15
*/
const string PRC_TRUENAME_CR_MULTIPLIER = "PRC_TRUENAME_CR_MULTIPLIER";
/**
* Gives a bonus based on Truenamer level
* PC Truenamer level is divided by this value
* Ex: To give a bonus equal to 1/2 Truenamer level, set this to 2
*
* The formula used is (CR * Multiplier) + 15 - Bonus
*
* defaults to PnP: 0/No bonus
*/
const string PRC_TRUENAME_LEVEL_BONUS = "PRC_TRUENAME_LEVEL_BONUS";
/**
* Sets the Constant value added to the DC
* Ex: To make the constant 10, simply set this value to 10
*
* The formula used is (CR * Multiplier) + Constant
*
* defaults to PnP: +15.
*/
const string PRC_TRUENAME_DC_CONSTANT = "PRC_TRUENAME_DC_CONSTANT";
/**
* Sets the Constant value added to the DC
* Ex: To make the constant 10, simply set this value to 10
*
* The formula used is Constant + (2 * Utterance Level)
*
* defaults to PnP: +25.
*/
const string PRC_PERFECTED_MAP_CONSTANT = "PRC_PERFECTED_MAP_CONSTANT";
/**
* Sets the Multiplier value added to the DC
* Ex: To make the multiplier 4, simply set this value to 4
*
* The formula used is 25 + (Multiplier * Utterance Level)
*
* defaults to PnP: 2.
*/
const string PRC_PERFECTED_MAP_MULTIPLIER = "PRC_PERFECTED_MAP_MULTIPLIER";
-
XWARREN,
Thanks very much!!!
Out of curiousity, what do you set your switches too for Truenamer? I came up with some values, but I would like to see what you do.
-
Last time I played truenamer I set PRC_TRUENAME_CR_MULTIPLIER 125. That was all I needed ;)