Problem appears to be in your custom function.
LUA:
function recursiveContainers(container)
local containerItems = container:getItems(true)
local items = {}
for i = 1, #containerItems do
local cItem = containerItems[i]
if cItem:isContainer() then
local newItems = recursiveContainers(cItem)
if #newItems > 0 then
for x = 1, #newItems do
local newItem = newItems[x] -- Use 'x' instead of 'i'
items[#items + 1] = newItem
end
end
else
items[#items + 1] = cItem -- Use 'cItem' for non-container items
end
end
return items
end
Some issues here beyond that tho..
LUA:
local containerItems = container:getItems(true) -- true here means it checks recursively..
.
.
local newItems = recursiveContainers(cItem) -- which means this is going to cause duplicate items to be found
But, that entire function is not required, since we already have the ability to recursively find all the items in a container..
So it can be simplified to this..
LUA:
local RarityDrops = CreatureEvent("rarity_drops")
local function checkCorpse(corpsePosition, corpseNumber)
local corpse = Tile(corpsePosition):getTopVisibleThing()
if not corpse or not corpse:isContainer() then
print("Unable to find corpse, or corpse is not a container.")
return true
end
local containerItems = corpse:getItems(true)
print(#containerItems)
for i, v in pairs(containerItems) do
print(i)
print(v)
end
end
function RarityDrops.onDeath(creature, corpse, killer, mostDamageKiller, lastHitUnjustified, mostDamageUnjustified)
local monster = Monster(creature)
if not monster or not corpse then
return true
end
addEvent(checkCorpse, 100, corpse:getPosition())
return true
end
RarityDrops:register()
but I'd suggest adding some kind of marker to the corpse you're trying to check, so that it's grabbing the correct item.
(custom attribute, CORPSE_IDENTIFIER -> add from 1-10000, then loop? and when finding the corpse, loop through all the items on the tile, until you find the CORPSE_IDENTIFIER..)
After typing this all out.. I might as well actually script it lmao.
Alright here we go.
LUA:
local corpseCounter = 0
local function checkCorpse(corpsePosition, corpseNumber)
local corpse = false
local tileItems = Tile(corpsePosition):getItems()
for _, item in pairs(tileItems) do
local identifier = item:getCustomAttribute("CORPSE_IDENTIFIER")
if identifier and identifier == corpseNumber then
corpse = item
corpse:removeCustomAttribute("CORPSE_IDENTIFIER")
break
end
end
if not corpse or not corpse:isContainer() then
print("Unable to find corpse, or corpse is not a container.")
return true
end
local containerItems = corpse:getItems(true)
print(#containerItems)
for i, v in pairs(containerItems) do
print(i)
print(v)
end
end
local RarityDrops = CreatureEvent("rarity_drops")
function RarityDrops.onDeath(creature, corpse, killer, mostDamageKiller, lastHitUnjustified, mostDamageUnjustified)
local monster = Monster(creature)
if not monster or not corpse then
return true
end
corpseCounter = corpseCounter == 10000 and 1 or corpseCounter + 1
corpse:setCustomAttribute("CORPSE_IDENTIFIER", corpseCounter)
addEvent(checkCorpse, 100, corpse:getPosition(), corpseCounter)
return true
end
RarityDrops:register()