FonsecaBF Posted January 5, 2022 Share Posted January 5, 2022 function testChest() itens = exports.ws_inventory:getItens() for i = 1, #itens do local id, name, weight = itens[i][1], ""..itens[i][2], ""..itens[i][3] local getCountItem = getElementData(object_chest, name) or 0 if getCountItem >= 1 then print(""..name.. " - "..getCountItem) end end end addCommandHandler("test2", testChest) Queria saber a quantidade de item porem somente itens que tiverem 1 ou mais; "attempt to compare number with string" - este é o erro. está função está em client pois é uma função para teste e depois irei coloca em um dx Link to comment
FonsecaBF Posted January 5, 2022 Author Share Posted January 5, 2022 2 hours ago, FonsecaBF said: function testChest() itens = exports.ws_inventory:getItens() for i = 1, #itens do local id, name, weight = itens[i][1], ""..itens[i][2], ""..itens[i][3] local getCountItem = getElementData(object_chest, name) or 0 if getCountItem >= 1 then print(""..name.. " - "..getCountItem) end end end addCommandHandler("test2", testChest) Queria saber a quantidade de item porem somente itens que tiverem 1 ou mais; "attempt to compare number with string" - este é o erro. está função está em client pois é uma função para teste e depois irei coloca em um dx Consegui resolver o problema, pode fechar esse topico se possivel Link to comment
Recommended Posts