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.
14 lines
469 B
Plaintext
14 lines
469 B
Plaintext
void main()
|
|
{
|
|
//Declare major variables
|
|
object oPC = OBJECT_SELF;
|
|
effect eRadiance = EffectVisualEffect(VFX_DUR_ULTRAVISION);
|
|
effect eUltra = EffectUltravision();
|
|
effect eAC = EffectACIncrease(2,AC_DODGE_BONUS);
|
|
eAC = VersusRacialTypeEffect(eAC,RACIAL_TYPE_UNDEAD);
|
|
effect eLink = EffectLinkEffects(eRadiance, eUltra);
|
|
eLink = EffectLinkEffects(eLink, eAC);
|
|
SupernaturalEffect(eLink);
|
|
ApplyEffectToObject(2,eLink,OBJECT_SELF);
|
|
}
|