• 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!

Could Someone make me, Exevo Gran Mas Mort.

Vctr2013

New Member
Joined
Dec 29, 2012
Messages
22
Reaction score
2
Hello could someone made me a spell, called Exevo Gran Mas Mort, with the description, Rise Of The Undead.
with the sam area damage as exevo gran mas vis, but throwing mort, also with the same atk as exevo gran mas flam, but a little bit more, to deal an added 200 more damage, for lvl 100, and for druid and sorcs, please.
Thank You.
 
Here you go. The green code is what determines the damage you do with the spell. I've increased it with -0.4 to both min and max damage (normal exevo gran mas vis is -0.8 and -1.4).

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, [COLOR="#008000"]-1.1[/COLOR], 0, [COLOR="#008000"]-1.7[/COLOR], 0)

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

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