07-17-2022, 05:22 AM
local Items = {
{ Item = 3111, Count = 1 }, -- a fishbone
{ Item = 3112, Count = 1 }, -- rotten meat
{ Item = 2894, Count = 1 }, -- a broken flask
{ Item = 3121, Count = 1 }, -- a torn book
{ Item = 3104, Count = 1 }, -- a banana skin
{ Item = 3125, Count = 1 }, -- remains of a fish
}
for _, item in ipairs(Items) do
if itemcount(item.Item) >= item.Count then
moveitems(item.Item, ground(posx(), posy(), posz()), '', 100)
wait(500)
end
end
{ Item = 3111, Count = 1 }, -- a fishbone
{ Item = 3112, Count = 1 }, -- rotten meat
{ Item = 2894, Count = 1 }, -- a broken flask
{ Item = 3121, Count = 1 }, -- a torn book
{ Item = 3104, Count = 1 }, -- a banana skin
{ Item = 3125, Count = 1 }, -- remains of a fish
}
for _, item in ipairs(Items) do
if itemcount(item.Item) >= item.Count then
moveitems(item.Item, ground(posx(), posy(), posz()), '', 100)
wait(500)
end
end