diff --git a/_module/ncs/cr_claw_ggg_r.ncs b/_module/ncs/cr_claw_ggg_r.ncs index ed294d5b..ee34834a 100644 Binary files a/_module/ncs/cr_claw_ggg_r.ncs and b/_module/ncs/cr_claw_ggg_r.ncs differ diff --git a/_module/ncs/x2_s1_beholdray.ncs b/_module/ncs/x2_s1_beholdray.ncs index c33f83b8..06132b0e 100644 Binary files a/_module/ncs/x2_s1_beholdray.ncs and b/_module/ncs/x2_s1_beholdray.ncs differ diff --git a/_module/nss/cr_claw_ggg_r.nss b/_module/nss/cr_claw_ggg_r.nss index 620942e4..b8da692d 100644 --- a/_module/nss/cr_claw_ggg_r.nss +++ b/_module/nss/cr_claw_ggg_r.nss @@ -46,7 +46,7 @@ void main() return; } - if(!MySavingThrow(SAVING_THROW_FORT, oTarget, 16, SAVING_THROW_TYPE_NONE)) + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, 16, SAVING_THROW_TYPE_NONE)) { //Apply the VFX impact and effects ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); diff --git a/_module/nss/qn_onhit.nss b/_module/nss/qn_onhit.nss index 4d38cb7a..89e3d420 100644 --- a/_module/nss/qn_onhit.nss +++ b/_module/nss/qn_onhit.nss @@ -228,7 +228,6 @@ void main() //Trample case 8: nDC = 10 + (nHD / 2) + nStrength; -// if(!MySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC)) if(ReflexSave(oTarget, nDC, SAVING_THROW_TYPE_ALL, OBJECT_SELF) == 0) { //Determine creature appearance. diff --git a/_module/nss/x2_s1_beholdray.nss b/_module/nss/x2_s1_beholdray.nss index a603f4ef..59f9645c 100644 --- a/_module/nss/x2_s1_beholdray.nss +++ b/_module/nss/x2_s1_beholdray.nss @@ -14,8 +14,10 @@ //::////////////////////////////////////////////// -#include "x0_i0_spells" +//#include "x2_i0_spells" +#include "x0_i0_henchman" #include "prc_inc_racial" +#include "prc_inc_spells" void DoBeholderPetrify(int nDuration,object oSource, object oTarget, int nSpellID); @@ -90,11 +92,11 @@ void main() if (nSave == SAVING_THROW_WILL) { - bSave = MySavingThrow(SAVING_THROW_WILL,oTarget, nSaveDC,SAVING_THROW_TYPE_ALL,OBJECT_SELF,fDelay) >0; + bSave = PRCMySavingThrow(SAVING_THROW_WILL,oTarget, nSaveDC,SAVING_THROW_TYPE_ALL,OBJECT_SELF,fDelay) >0; } else if (nSave == SAVING_THROW_FORT) { - bSave = MySavingThrow(SAVING_THROW_FORT,oTarget, nSaveDC,SAVING_THROW_TYPE_ALL,OBJECT_SELF,fDelay) >0; + bSave = PRCMySavingThrow(SAVING_THROW_FORT,oTarget, nSaveDC,SAVING_THROW_TYPE_ALL,OBJECT_SELF,fDelay) >0; } if (!bSave) @@ -190,7 +192,7 @@ void DoBeholderPetrify(int nDuration,object oSource, object oTarget, int nSpellI if(!GetIsReactionTypeFriendly(oTarget) && !GetIsDead(oTarget)) { // * exit if creature is immune to petrification - if (spellsIsImmuneToPetrification(oTarget) == TRUE) + if (PRCIsImmuneToPetrification(oTarget) == TRUE) { return; } diff --git a/_module/ra_tdog.mod b/_module/ra_tdog.mod index 4f81cc64..531d9f09 100644 Binary files a/_module/ra_tdog.mod and b/_module/ra_tdog.mod differ