PRC8/nwn/nwnprc/trunk/scripts/xchst_exit.nss
Jaysyn904 6ec137a24e 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.
2024-02-11 14:01:05 -05:00

18 lines
502 B
Plaintext

#include "inc_debug"
#include "xchst_inc"
void main()
{
object oPC = GetExitingObject();
object oChest = GetLocalObject(oPC, XCHST_CONT);
if(GetMaster(oChest) != oPC)
return;
AssignCommand(GetLocalObject(oChest, XCHST_PLC), PlayAnimation(ANIMATION_PLACEABLE_CLOSE));
AssignCommand(oChest, ClearAllActions(TRUE));
RemoveHenchman(oPC, oChest);
_clear_chat_vars(oPC);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, SupernaturalEffect(EffectEthereal()), oChest);
}