Areas and Fixes
Added CCOH and missing areas Changed some areas to be craftable, Fixed some on death issues, Fixed the Gaurd
This commit is contained in:
20
_module/nss/trash_can_close.nss
Normal file
20
_module/nss/trash_can_close.nss
Normal file
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user