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:
@@ -44,7 +44,7 @@ Created: 6/28/06
|
||||
|
||||
int GetERSpellResistance(int nCasterLvl)
|
||||
{
|
||||
int nSRBonus = min(nCasterLvl, 20);
|
||||
int nSRBonus = PRCMin(nCasterLvl, 20);
|
||||
int nIPConst;
|
||||
|
||||
switch(nSRBonus)
|
||||
@@ -81,7 +81,7 @@ void main()
|
||||
object oMyArmor = IPGetTargetedOrEquippedArmor(FALSE);
|
||||
int nCasterLvl = PRCGetCasterLevel(oPC);
|
||||
int nSR = GetERSpellResistance(nCasterLvl);
|
||||
int nArmor = min(nCasterLvl / 5, 4);
|
||||
int nArmor = PRCMin(nCasterLvl / 5, 4);
|
||||
float fDur = (60.0f * nCasterLvl);
|
||||
int nMetaMagic = PRCGetMetaMagicFeat();
|
||||
|
||||
|
Reference in New Issue
Block a user