function onUse(cid, item, frompos, item2, topos)
exhaust,manamax,porce = 1100,math.max((getPlayerLevel(cid)*10)),5 -- 9%
if getPlayerStorageValue(cid, 14725) >= os.time() then return true end
if getPlayerLevel(cid) > (manamax/10-1) then
doCreatureAddMana(item2.uid, math.random(math.floor(getCreatureMaxMana(cid)/100*porce/1.4),math.ceil(getCreatureMaxMana(cid)/100*porce)))
doSendMagicEffect(topos, CONST_ME_MAGIC_BLUE)
doCreatureSay(item2.uid, "Mana Ha...", TALKTYPE_ORANGE_1)
setPlayerStorageValue(cid, 14725, os.time() + exhaust / 1000)
return true
end
end