function onUse (cid, item, fromPosition, itemEx, toPosition)
local level, mlevel = getPlayerLevel(cid), getPlayerMagLevel(cid)
local mana_min, mana_max, health_min, health_max = (level * 5) + (mlevel * 3) - 55, (level * 6) + (mlevel * 8), (level * 5) + (mlevel * 3) - 55, (level * 6) + (mlevel * 8)
if isPlayer(itemEx.uid) then
doCreatureSay(itemEx.uid, "Aaaah..", TALKTYPE_ORANGE_1)
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_BLUE)
doPlayerAddMana(cid, math.random(mana_min, mana_max))
doCreatureAddHealth(cid, math.random(health_min, health_max))
end
return true
end