PWE_PRC8/_module/nss/bank_box_close.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

19 lines
493 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
object oBox;
int iCounter = 1;
while(iCounter <= 10)
{
if(GetItemPossessedBy(oPC, "az_strongbox_" + GetPCPublicCDKey(oPC) + "_" + IntToString(iCounter)) != OBJECT_INVALID)
{
oBox = GetObjectByTag("az_strongbox_" + GetPCPublicCDKey(oPC) + "_" + IntToString(iCounter));
StoreCampaignObject("bankdb", "bank_box_" + IntToString(iCounter), oBox, oPC);
DestroyObject(oBox);
}
iCounter = iCounter + 1;
}
return;
}