Alangara_PRC8/_module/nss/ke_anoy_takewolf.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

42 lines
925 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
int antal = 5;
string tag = "Anoywolfenheart";
object oItem = GetFirstItemInInventory( oPC );
int count = 0;
int stackSize;
int i;
while(GetIsObjectValid(oItem) && count < antal)
{
// Check tag
if (GetTag(oItem) == tag)
{
stackSize = GetItemStackSize(oItem);
if(stackSize == 1)
{
DestroyObject(oItem);
}
else
{
for(i=0; i<stackSize; i++)
{
SetItemStackSize(oItem,GetItemStackSize(oItem)-1);
count+=1;
if(count == antal)
{
return;
}
}
// Take care of last one.
DestroyObject(oItem);
}
}
oItem = GetNextItemInInventory(oPC);
}
return;
}