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,28 @@
/*:://////////////////////////////////////////////
//:: Spell Name Dancing Lights - Heartbeat
//:: Spell FileName sp_danclightc
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Moves them to a cirtain place depending on their tag.
Moves there. If caster gets out of 20M away, it winks out.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "prc_inc_spells"
void main()
{
// Check if caster is valid and in range
object oCaster = GetLocalObject(OBJECT_SELF, "Caster");
// Check if valid & in 20M & still got spell effects
if(!GetIsObjectValid(oCaster) || (GetDistanceToObject(oCaster) > 20.0 ||
!GetHasSpellEffect(SPELL_DANCING_LIGHTS, oCaster) ||
!GetHasSpellEffect(SPELL_DANCING_LIGHTS, OBJECT_SELF)))
{
SetPlotFlag(OBJECT_SELF, FALSE);
MyDestroyObject(OBJECT_SELF);
}
}