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

12 lines
336 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
object oItem = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC);
if (GetIsObjectValid(oItem))
{
//ActionUnEquip didn't work, so put a copy in inventory and then destroy the one in the slot
object oCopy = CopyItem(oItem, oPC, TRUE);
DestroyObject(oItem);
}
}