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,31 @@
//:://////////////////////////////////////////////
//:: Teleportation Circle Trigger OnDisarmed
//:: prc_telecirc_dis
//:://////////////////////////////////////////////
/** @file
OnDisarmed script of the trap trigger created
by Teleporation Circle spell / power. Destroys
both itself and the AoE object.
@author Ornedan
@date Created - 2005.10.26
@date Modified - 2006.06.04
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "spinc_telecircle"
void main()
{
if(DEBUG) DoDebug("prc_telecirc_dis running, disarmed by " + DebugObject2Str(GetLastDisarmed()));
object oTrap = OBJECT_SELF;
object oAoE = GetLocalObject(oTrap, "AreaOfEffectObject");
// Destroy all traps linked to the AoE and the AoE itself
int i;
for(i = 0; i < TC_NUM_TRAPS; i++)
DestroyObject(GetLocalObject(oAoE, "Trap_" + IntToString(i)));
DestroyObject(oAoE);
}