07-13-2022, 11:48 PM
local Items = {
{ Item = 2667, Count = 5 }, -- hering
{ Item = 2238, Count = 1 }, -- worn boots
{ Item = 2010, Count = 1 }, -- broken bottle
}
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
just gotta change the "items,Count,Name