guilherme para dechar a runa infinita vc tem q deixar assim no arquivo mf.lua
function onUse(cid, item, frompos, item2, topos)
mag = getPlayerMagLevel(cid)
if mag >= 3 then
doSendMagicEffect(topos,1)
doPlayerSay(cid,"Ahhhh! Fresh mana fluid!",16)
doPlayerAddMana(cid, 150)
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
else
doSendMagicEffect(frompos,2)
doPlayerSendCancel(cid,"You don't have the required magic level to use that rune.")
end
return 1
end