Glidarn
Member
As you see on the picture exevo pan doesnt work and been searching around and didnt find the solution 
http://img813.imageshack.us/i/conjurefood.png/

http://img813.imageshack.us/i/conjurefood.png/
Last edited:
<instant name="Food" words="exevo pan" lvl="14" mana="120" soul="1" aggressive="0" selftarget="1" exhaustion="1000" needlearn="1" event="script" value="support/conjure food.lua">
<vocation id="2"/>
<vocation id="3"/>
<vocation id="6"/>
<vocation id="7"/>
</instant>
local FOODS = {
2666, -- meat
2671, -- ham
2681, -- grape
2674, -- aple
2689, -- bread
2690, -- roll
2696 -- cheese
}
function onCastSpell(cid, var)
local size = table.maxn(FOODS)
if(not doPlayerAddItem(cid, FOODS[math.random(1, size)])) then
doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTPOSSIBLE)
doSendMagicEffect(getThingPosition(cid), CONST_ME_POFF)
return false
end
if(math.random(1, 100) > 50) then
doPlayerAddItem(cid, FOODS[math.random(1, size)])
end
doSendMagicEffect(getThingPosition(cid), CONST_ME_MAGIC_GREEN)
return true
end
You must spread some Reputation around before giving it to Summ again.