#include "sd_arrays" int CheckExchangeItems(object oPC, int Exchange) { int iResult; string sTAG_Chest1 = "FRFinalLegend________20_0_20_4_1"; string sTAG_Chest2 = "FI" + GetStringRight(sTAG_Chest1, GetStringLength(sTAG_Chest1)-2); object oChest = GetObjectByTag(sTAG_Chest1); object oItem = GetFirstItemInInventory(oChest); int iItemCounter = 0; int iTotalItems = 0; string sResRef = ""; int iItemFound = 0; int iStackItems = 0; //build a local array of resrefs on the PC to run comparison against while (oItem != OBJECT_INVALID) { iItemCounter++; sResRef = GetResRef(oItem); SetLocalArrayString(oPC, "ChestItem", iItemCounter, sResRef); SetLocalArrayInt(oPC, "ChestItemStack", iItemCounter, GetNumStackedItems(oItem)); oItem = GetNextItemInInventory(oChest); } //set a local memory variable to the pc, with the information of how many items there were in the chest. SetLocalInt(oPC, "ChestItemCount", iItemCounter); //reset the counters for looping the memory variables and the PC's inventory iTotalItems = iItemCounter; iItemCounter = 0; while (iItemCounter