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,23 @@
#include "inv_inc_invfunc"
void main()
{
int nSpellID = GetSpellId();
int nBlast;
switch(nSpellID)
{
case INVOKE_HELLFIRE_BLAST: nBlast = INVOKE_ELDRITCH_BLAST; break;
case INVOKE_HELLFIRE_SPEAR: nBlast = INVOKE_ELDRITCH_SPEAR; break;
case INVOKE_HELLFIRE_GLAIVE: nBlast = INVOKE_ELDRITCH_GLAIVE; break;
case INVOKE_HELLFIRE_BLOW: nBlast = INVOKE_HIDEOUS_BLOW; break;
case INVOKE_HELLFIRE_CHAIN: nBlast = INVOKE_ELDRITCH_CHAIN; break;
case INVOKE_HELLFIRE_CONE: nBlast = INVOKE_ELDRITCH_CONE; break;
case INVOKE_HELLFIRE_LINE: nBlast = INVOKE_ELDRITCH_LINE; break;
case INVOKE_HELLFIRE_DOOM: nBlast = INVOKE_ELDRITCH_DOOM; break;
default: return;
}
SetLocalInt(OBJECT_SELF, "INV_HELLFIRE", TRUE);
UseInvocation(nBlast, CLASS_TYPE_WARLOCK);
}