Jump to content

Ajuda erro - attempt


Recommended Posts

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
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
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...