LUA code to generate backpack full of backpacks:
function fillContainer(container, level, innerContainerCount)
if level > 0 then
for i = 1, innerContainerCount do
local innerContainer = Game.createItem(2000)
container:addItemEx(innerContainer)
fillContainer(innerContainer, level - 1, innerContainerCount)
end
else
for i = 1, 20 do
local item = Game.createItem(i % 2 == 0 and 2376 or 2400)
container:addItemEx(item)
end
end
end
function generateBigContainer(player, innerContainerCount, deepness)
local item = player:getTile():addItem(2000)
fillContainer(item, deepness, innerContainerCount)
return item
end
Code to call it:
!lua generateBigContainer(player, 20, 2)
Requires !lua debug:
https://otland.net/threads/debug-lua-scripts-with-talkaction.112027/
https://otland.net/threads/tfs-1-x-luajit-debug-lua-scripts-with-talkaction.260910/
https://otland.net/threads/tfs-1-3-lua-5-2-debug-lua-scripts-with-talkaction.266086/