local t = {
[9696] = {stoneID = 1353, pos = {x=1010,y=1000,z=7}, time = 10}
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
local v = t[item.actionid]
if not v then return true end
local c = getTileItemById(v.pos,v.stoneID)
doRemoveItem(c.uid)
addEvent(function(id,c,pos) pos.stackpos = 253 if isPlayer(getThingFromPos(pos).uid) then doMoveCreature(getThingFromPos(pos).uid, 2) end doCreateItem(id,c,pos) end ,t.time*1000,c.itemid,1,t.pos)
return true
end