function onUse(cid, item, frompos, item2, topos)
if item.uid == 8945 then
if getGlobalStorageValue(14354) <= 0 then
doPlayerSendTextMessage(cid,22,"Você criou uma escada!.")
doCreateItem(3687, 1 , {x=157, y=88, z=7} ) -- posição da escada
doSendMagicEffect( {x=157, y=88, z=7}, 30)
setGlobalStorageValue(14354, 1)
else
doRemoveItem(getThingFromPos( {x=157, y=88, z=7, stackpos = 1} ).uid, 1) -- posição da escada
setGlobalStorageValue(14354,-1)
doPlayerSendTextMessage(cid,22,"Você removeu a escada!.")
end
end
return 0
end