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

exana mort

Wezc

Banned User
Joined
Feb 9, 2009
Messages
467
Reaction score
14
Location
Svenneland
Hi guys! I was wondering how i can increase the healing of exana mort.. in level 400 it only heals like 200.. i want it to heal alot more.. Please help me!
 
change level divisors to a lower number.
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, [B][COLOR="Red"]5[/COLOR][/B], [B][COLOR="Red"]5[/COLOR][/B], 11, 15)

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