Updated AMS marker feats

Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-02-11 14:01:05 -05:00
parent 618cd42b82
commit 6ec137a24e
24762 changed files with 1528530 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
//////////////////////////////////////////////////////////
// Unseen Weapon: Activate
// prc_sb_uwactiv.nss
/////////////////////////////////////////////////////////
#include "prc_inc_combat"
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
effect eVis;
int nUnexpect = GetLocalInt(oPC, "PRC_SB_UNEXPECTED");
int nEphemeral = GetLocalInt(oPC, "PRC_SB_EPHEMERAL");
int nShadowy = GetLocalInt(oPC, "PRC_SB_SHADOWY");
if(nShadowy) eVis = EffectVisualEffect(VFX_IMP_DESTRUCTION);
if(nEphemeral)
{
if(nUnexpect) AssignCommand(oTarget, ClearAllActions(TRUE));
PerformAttack(oTarget, oPC, eVis, 0.0f, 0, d6(2), DAMAGE_TYPE_MAGICAL, "","", nShadowy);
}
else
{
if(nUnexpect) AssignCommand(oTarget, ClearAllActions(TRUE));
PerformAttack(oTarget, oPC, eVis, 0.0f, 0, 0, 0, "", "", nShadowy);
}
//Clean up
DeleteLocalInt(oPC, "PRC_SB_UNEXPECTED");
DeleteLocalInt(oPC, "PRC_SB_EPHEMERAL");
DeleteLocalInt(oPC, "PRC_SB_SHADOWY");
DeleteLocalInt(oPC, "PRC_SB_UNERRING");
}