como esconder tooltip dentro otclient
eu estou usando script:
local item = self:getItem()
if item and not self:getTooltip() then
local itemsList = {
[3577] = {name = "Meat", raridade = Normal},
[3270] = {name = "Porrete", raridade = 10, attack = 20, defense = 0},
}
local data = itemsList[item:getId()]
if data then
local description = 'This is ' .. item:getCount() .. 'x ' .. data.name .. ', Raridade ' .. data.raridade
if data.attack then
description = description .. ' Attack: ' .. data.attack .. '.'
end
if data.defense then
description = description .. ' Defense: ' .. data.defense .. '.'
end
self:setTooltip('Description: ' .. description)
else
self:setTooltip('No description')
end
end
e eu vejo algo assim