PRC8_fork/nwn/trunk/scripts/xchst_exit.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
2023-08-22 10:00:21 -04: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);
}