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

14 lines
261 B
Plaintext

void main()
{
object oExit = GetExitingObject();
if(GetImmortal(oExit))
{
if(GetLocalInt(oExit,"IMPLICABLE_FOE_ON"))
{
SetImmortal(oExit, FALSE);
DeleteLocalInt(oExit, "IMPLICABLE_FOE_ON");
}
}
}