Download on SteamDownload on NWVaultJoin the PRC Discord!
0 Members and 1 Guest are viewing this topic.
Is there a place that has a description of what the switches do? I want to know what the three TRUENAMER switches do.
/******************************************************************************\* 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";