oi, não deu certo deu até um erro na distro, tem como me mandar o script mas já com o código dentro?
local walls = {1058, 9119, 10180, 1039}
function onUse(cid, item, _, itemEx)
local tmp = {}
for _, v in ipairs(walls) do
tmp[v] = #walls == _ and '_last' or walls[_ + 1]
end
local wall = tmp[itemEx.itemid]
if not wall then
return false
end
if wall == '_last' then
doRemoveItem(itemEx.uid, 1)
else
doTransformItem(itemEx.uid, tmp[itemEx.itemid])
end
return true
end