Duplicate Content
Tfs.1.2
im trying use this script, when i use the item, will tranform to next item id until the last item id 5133, after back to 5098 again, but the problem item when i use the item, go directly to last item id 5133 ;/
LUA:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
local newId = item:getId() + 1
if newId > 5098 then
newId = 5133
end
item:transform(newId)
return true
end
im trying use this script, when i use the item, will tranform to next item id until the last item id 5133, after back to 5098 again, but the problem item when i use the item, go directly to last item id 5133 ;/