Exalted update
Updated Vow of Poverty. Added Sanctify Ki Strike, Holy Strike, Fist of Heavens, Vow of Abstinence, Vow of Chastity & Gift of Faith. (@fenac). Turned off the Taunt & Parry skills. Re-disabled AC & save bonuses from Tumble & Spellcraft. Updated min() & max() to PRCmin() & PRCmax() to not conflict with similarly named NUI adjacent functions. Set Point Blank Shot to 30' per PnP. Added icon for Chosen of Evil. Started work on Hidden Talent. Created Psionics function cheatsheet. Updated release archive.
This commit is contained in:
@@ -49,7 +49,7 @@ int DoSpell(object oCaster, object oTarget, int nCasterLevel, int nSpellID, int
|
||||
}
|
||||
|
||||
// Extra points based on spell level, capped to caster level
|
||||
int nExtraDamage = min(nSpellLevel * 5, nCasterLevel);
|
||||
int nExtraDamage = PRCMin(nSpellLevel * 5, nCasterLevel);
|
||||
|
||||
// Healing is more effective for players on low or normal difficulty
|
||||
int nDifficultyCondition = (GetIsPC(oTarget) && (GetGameDifficulty() < GAME_DIFFICULTY_CORE_RULES)) && bIsCure;
|
||||
|
Reference in New Issue
Block a user