PRC8/nwn/nwnprc/trunk/scripts/codi_s0_implcfo1.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

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);
}
}
}
}