function onUse(cid, item, fromPosition, itemEx, toPosition)
if toPosition.x ~= 0 and toPosition.x ~= 65535 and itemEx.uid ~= 0 and isPlayer(itemEx.uid) then
local k = getPlayerLevel(cid)
if k < 300 then
k = 1600
elseif k < 700 then
k = 2500
else
k = 3500
end
doPlayerAddMana(itemEx.uid, k)
doSendMagicEffect(toPosition, CONST_ME_MAGIC_BLUE)
return true
end
end