Player Resource Consortium

 

Author Topic: Switch descriptions  (Read 3366 times)

0 Members and 1 Guest are viewing this topic.

May 17, 2011, 10:29:17 PM
  • Associate
  • ***
  • Posts: 145
  • Karma: +1/-0
    • View Profile

Is there a place that has a description of what the switches do?  I want to know what the three TRUENAMER switches do.


May 18, 2011, 02:24:36 AM
Reply #1
  • Hero Member
  • *****
  • Posts: 1439
  • Karma: +27/-0
  • Gender: Male
    • View Profile

Quote from: Necro

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:
Code: [Select]
/******************************************************************************\
*                              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";


May 19, 2011, 12:46:07 AM
Reply #2
  • Associate
  • ***
  • Posts: 145
  • Karma: +1/-0
    • View Profile

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.


May 20, 2011, 02:42:34 AM
Reply #3
  • Hero Member
  • *****
  • Posts: 1439
  • Karma: +27/-0
  • Gender: Male
    • View Profile

Last time I played truenamer I set PRC_TRUENAME_CR_MULTIPLIER 125. That was all I needed ;)