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:
@@ -453,7 +453,7 @@ void CreateSpiritualWeapon(object oCaster, float fDuration, int nClass)
|
||||
int iCasterLvL = PRCGetCasterLevel(oCaster);
|
||||
int nBAB = GetBaseAttackBonus(oCaster);
|
||||
int nAttNumber = 1+(nBAB / 4);
|
||||
int nDamBonus = min(5, iCasterLvL / 3);
|
||||
int nDamBonus = PRCMin(5, iCasterLvL / 3);
|
||||
int nPenetr = iCasterLvL + SPGetPenetr();
|
||||
int nStat = nClass == CLASS_TYPE_INVALID ?
|
||||
GetAbilityModifier(ABILITY_CHARISMA, oCaster) ://:: if cast from items use charisma by default
|
||||
@@ -804,7 +804,7 @@ void HandleSpiritualWeaponUnequipEvent()
|
||||
int nCasterLevel = PRCGetCasterLevel(oCaster);
|
||||
int nDuration = nCasterLevel;
|
||||
int nPenetr = nCasterLevel + SPGetPenetr();
|
||||
int nDamBonus = min(5, nCasterLevel / 3);
|
||||
int nDamBonus = PRCMin(5, nCasterLevel / 3);
|
||||
float fDuration = IntToFloat(nDuration);
|
||||
|
||||
// Log the event for debugging
|
||||
|
Reference in New Issue
Block a user