PRC8/nwn/nwnprc/trunk/include/spinc_fdisk.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

32 lines
837 B
Plaintext

void TransferItems(object oDisk, object oCaster)
{
int bDrop = !GetIsObjectValid(oCaster);
if(bDrop)
{
oCaster = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_lootbag3", GetLocation(oDisk));
SetLocalInt(oCaster, "NW_DO_ONCE", TRUE);
DestroyObject(oCaster, 0.4);
}
object oInv;
int i;
for(i = 0; i < 14; i++)
{
oInv = GetItemInSlot(i, oDisk);
if(GetIsObjectValid(oInv))
ActionGiveItem(oInv, oCaster);
}
oInv = GetFirstItemInInventory(oDisk);
while(GetIsObjectValid(oInv))
{
ActionGiveItem(oInv, oCaster);
oInv = GetNextItemInInventory(oDisk);
}
}
void DestroyDisk(object oDisk)
{
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oDisk));
DestroyObject(oDisk, 0.5);
}