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.
20 lines
425 B
Plaintext
20 lines
425 B
Plaintext
/*
|
|
Implicable Foe - On Enter
|
|
*/
|
|
void main()
|
|
{
|
|
object oCreator = GetAreaOfEffectCreator(OBJECT_SELF);
|
|
object oEnter = GetEnteringObject();
|
|
if(GetIsFriend(oEnter, oCreator))
|
|
{
|
|
if(oEnter != oCreator)
|
|
{
|
|
if(!GetImmortal(oEnter))
|
|
{
|
|
SetImmortal(oEnter, TRUE);
|
|
SetLocalInt(oEnter, "IMPLICABLE_FOE_ON", TRUE);
|
|
}
|
|
}
|
|
}
|
|
}
|