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,25 @@
//::///////////////////////////////////////////////
//:: Lliiras' Aura
//:: mh_S1_LliiraAura.nss
//:://////////////////////////////////////////////
/*
Cree une zone d'effet conferant un bonus de +4
au jet de sauvegarde contre la peur pour une duree
de 5 tours
*/
//:://////////////////////////////////////////////
//:: Created By: Age
//:: Created On: January, 2004
//:://////////////////////////////////////////////
void main()
{
//SpawnScriptDebugger();
//Declare major variables including Area of Effect Object
effect eAOE = EffectAreaOfEffect(37,"mh_s1_lliira_ent","","mh_s1_lliira_sor");
effect eVis = EffectVisualEffect(VFX_IMP_AURA_HOLY);
effect eLink = EffectLinkEffects(eAOE,eVis);
int nDuration = 5;
//Create an instance of the AOE Object using the Apply Effect function
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, OBJECT_SELF, TurnsToSeconds(nDuration));
}