//Put this script OnEnter void main() { object oPC = GetEnteringObject(); object oTarget = GetObjectByTag("Perdition_Chest"); object oItem = GetFirstItemInInventory(oPC); if(GetIsDM(oPC)) { return; } else if (!GetIsPC(oPC)) return; while (GetIsObjectValid(oItem)) { AssignCommand(oTarget, ActionTakeItem(oItem, oPC)); oItem = GetNextItemInInventory(oPC); } int nInt; for (nInt=0; nInt