• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

new spell for druid 8.6

mirak sebata

New Member
Joined
Dec 6, 2017
Messages
135
Reaction score
0
has anyone has a new spell for druid i have this spell : exevo gran mas frigo but i want an extra spell
bring it up.. :)
 
<instantname="Chauring Frigo"words="chauring frigo"lvl="120"maglv="5"mana="500"exhaustion="1000"prem="0"needlearn="0"blockwalls="0"aggressive="1"event="script"value="Chauring Frigo.lua"><vocationid="2"/> ---Druid
<vocationid="6"/> ---Elder Druid</instant>

and mine script must be like this or i wil get error "cant find spell.xml"

<instant name="Exevo Super" words="exevo super" lvl="100" mana="800" prem="1" range="6" casterTargetOrDirection="1" blockwalls="1" exhaustion="2000" needlearn="0" event="script" value="attack/exevo super.lua">
<vocation id="1"/>
<vocation id="5"/>
</instant>
 
Last edited:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_GREEN_RINGS)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 6, 6, 6, 13)

local arr = {
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}
}

local area = createCombatArea(arr)
setCombatArea(combat, area)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end


can somebody help me this spell is not doing any dmg i want it as attack spell...
 
Last edited:

Similar threads

Back
Top