PGCC_PRC8/_module/nss/vat_stripdmfi.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

29 lines
755 B
Plaintext

#include "inc_levelset"
void main()
{
object oTarget = GetPCSpeaker();
int iFoundItemFlag = 0;
//for testing
//AssignCommand(oTarget, SpeakString("stripInventory fired"));
//valid only for creatures
//if ( GetObjectType(oTarget) != OBJECT_TYPE_CREATURE) return;
// set the variables
int i;
object oItem = GetFirstItemInInventory(oTarget);
// destroy unequipped items in inventory
while ( GetIsObjectValid(oItem) )
{
if (GetIsDMFI(oItem))
{
DestroyObject(oItem);
iFoundItemFlag = 1;
}
oItem = GetNextItemInInventory(oTarget);
}
if (iFoundItemFlag = 0) FloatingTextStringOnCreature("No DMFI items found.", oTarget, FALSE);
}