Aschbourne_PRC8/_module/trash_can_close.nss
GetOffMyYarn 8622e5ce08 Area Changes and other fixes
added areas and ccoh,
fixed some areas to work with crafting
fixed some on death issues
added server entry/ooc
2024-08-30 10:38:04 -04:00

21 lines
454 B
Plaintext

void main()
{
object oPC = GetLastUsedBy();
float fGold;
int iGold2;
// item destruction loop
object oItem = GetFirstItemInInventory(OBJECT_SELF);
while (GetIsObjectValid(oItem) == TRUE)
{
// gives gold for item
fGold=IntToFloat(GetGoldPieceValue(oItem));
iGold2=FloatToInt(fGold * 0.30);
GiveGoldToCreature(oPC, iGold2);
DestroyObject(oItem);
oItem = GetNextItemInInventory(OBJECT_SELF);
}
}