LoD_PRC8/_module/nss/sd_forge_count.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

113 lines
5.8 KiB
Plaintext

void main()
{
object oArea = GetArea(OBJECT_SELF);
object oChest = GetFirstObjectInArea(oArea);
string sTag = "";
int iItemCount_1 = 0;
int iItemCount_2 = 0;
int iItemCount_3 = 0;
int iItemCount_4 = 0;
int iItemCount_5 = 0;
int iItemCount_6 = 0;
int iItemCount_7 = 0;
int iItemCount_8 = 0;
int iItemCount_9 = 0;
int iItemCount_10 = 0;
int iItemCount_11 = 0;
int iItemCount_12 = 0;
int iItemCount_13 = 0;
int iItemCount_14 = 0;
int iItemCount_15 = 0;
int iItemCount_16 = 0;
int iItemCount_17 = 0;
int iItemCount_18 = 0;
int iItemCount_19 = 0;
int iItemCount_20 = 0;
int iItemCount_Total = 0;
while (GetIsObjectValid(oChest))
{
// Oki, here we're gonna exclude ALL objects but the chests with the items in.
// check if the object we got is a placeable and has inventory
if (GetObjectType(oChest) == OBJECT_TYPE_PLACEABLE && GetHasInventory(oChest))
{
//found a placable with inventory .. but it could be the forge.
sTag = GetTag(oChest);
//hardcoded first part of tag, chests tag MUST be "ForgeItemChest_"
if (TestStringAgainstPattern("ForgeItemChest_", sTag)==TRUE)
{
//FOUND a chest. Lets determin if this 'item' can be created for this char (lvl based)
if (TestStringAgainstPattern("ForgeItemChest_1_", sTag)) iItemCount_1++;
if (TestStringAgainstPattern("ForgeItemChest_2_", sTag)) iItemCount_2++;
if (TestStringAgainstPattern("ForgeItemChest_3_", sTag)) iItemCount_3++;
if (TestStringAgainstPattern("ForgeItemChest_4_", sTag)) iItemCount_4++;
if (TestStringAgainstPattern("ForgeItemChest_5_", sTag)) iItemCount_5++;
if (TestStringAgainstPattern("ForgeItemChest_6_", sTag)) iItemCount_6++;
if (TestStringAgainstPattern("ForgeItemChest_7_", sTag)) iItemCount_7++;
if (TestStringAgainstPattern("ForgeItemChest_8_", sTag)) iItemCount_8++;
if (TestStringAgainstPattern("ForgeItemChest_9_", sTag)) iItemCount_9++;
if (TestStringAgainstPattern("ForgeItemChest_10_", sTag)) iItemCount_10++;
if (TestStringAgainstPattern("ForgeItemChest_11_", sTag)) iItemCount_11++;
if (TestStringAgainstPattern("ForgeItemChest_12_", sTag)) iItemCount_12++;
if (TestStringAgainstPattern("ForgeItemChest_13_", sTag)) iItemCount_13++;
if (TestStringAgainstPattern("ForgeItemChest_14_", sTag)) iItemCount_14++;
if (TestStringAgainstPattern("ForgeItemChest_15_", sTag)) iItemCount_15++;
if (TestStringAgainstPattern("ForgeItemChest_16_", sTag)) iItemCount_16++;
if (TestStringAgainstPattern("ForgeItemChest_17_", sTag)) iItemCount_17++;
if (TestStringAgainstPattern("ForgeItemChest_18_", sTag)) iItemCount_18++;
if (TestStringAgainstPattern("ForgeItemChest_19_", sTag)) iItemCount_19++;
if (TestStringAgainstPattern("ForgeItemChest_20_", sTag)) iItemCount_20++;
}
}
//get the next object in the area
oChest = GetNextObjectInArea(oArea);
}
//create variables on the smith containing counts of valid items and their level restrictions
SetLocalInt(OBJECT_SELF, "ItemCount_1", iItemCount_1);
SetLocalInt(OBJECT_SELF, "ItemCount_2", iItemCount_2);
SetLocalInt(OBJECT_SELF, "ItemCount_3", iItemCount_3);
SetLocalInt(OBJECT_SELF, "ItemCount_4", iItemCount_4);
SetLocalInt(OBJECT_SELF, "ItemCount_5", iItemCount_5);
SetLocalInt(OBJECT_SELF, "ItemCount_6", iItemCount_6);
SetLocalInt(OBJECT_SELF, "ItemCount_7", iItemCount_7);
SetLocalInt(OBJECT_SELF, "ItemCount_8", iItemCount_8);
SetLocalInt(OBJECT_SELF, "ItemCount_9", iItemCount_9);
SetLocalInt(OBJECT_SELF, "ItemCount_10", iItemCount_10);
SetLocalInt(OBJECT_SELF, "ItemCount_11", iItemCount_11);
SetLocalInt(OBJECT_SELF, "ItemCount_12", iItemCount_12);
SetLocalInt(OBJECT_SELF, "ItemCount_13", iItemCount_13);
SetLocalInt(OBJECT_SELF, "ItemCount_14", iItemCount_14);
SetLocalInt(OBJECT_SELF, "ItemCount_15", iItemCount_15);
SetLocalInt(OBJECT_SELF, "ItemCount_16", iItemCount_16);
SetLocalInt(OBJECT_SELF, "ItemCount_17", iItemCount_17);
SetLocalInt(OBJECT_SELF, "ItemCount_18", iItemCount_18);
SetLocalInt(OBJECT_SELF, "ItemCount_19", iItemCount_19);
SetLocalInt(OBJECT_SELF, "ItemCount_20", iItemCount_20);
iItemCount_Total = iItemCount_Total + iItemCount_1;
iItemCount_Total = iItemCount_Total + iItemCount_2;
iItemCount_Total = iItemCount_Total + iItemCount_3;
iItemCount_Total = iItemCount_Total + iItemCount_4;
iItemCount_Total = iItemCount_Total + iItemCount_5;
iItemCount_Total = iItemCount_Total + iItemCount_6;
iItemCount_Total = iItemCount_Total + iItemCount_7;
iItemCount_Total = iItemCount_Total + iItemCount_8;
iItemCount_Total = iItemCount_Total + iItemCount_9;
iItemCount_Total = iItemCount_Total + iItemCount_10;
iItemCount_Total = iItemCount_Total + iItemCount_11;
iItemCount_Total = iItemCount_Total + iItemCount_12;
iItemCount_Total = iItemCount_Total + iItemCount_13;
iItemCount_Total = iItemCount_Total + iItemCount_14;
iItemCount_Total = iItemCount_Total + iItemCount_15;
iItemCount_Total = iItemCount_Total + iItemCount_16;
iItemCount_Total = iItemCount_Total + iItemCount_17;
iItemCount_Total = iItemCount_Total + iItemCount_18;
iItemCount_Total = iItemCount_Total + iItemCount_19;
iItemCount_Total = iItemCount_Total + iItemCount_20;
SetLocalInt(OBJECT_SELF, "ItemCount_Totally", iItemCount_Total);
}