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

how to change exura gran to a powerfuller heal?

zarw1337

Realera Hosting
Joined
Jun 22, 2008
Messages
66
Reaction score
0
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)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 1.335, 0, 1.58, 0)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end
 
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)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 1.335, 0, 1.58, 0)

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

You have to change the variables. Like this:
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5.5, 0, 5.9, 0)

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)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 3.5, 0, 4.2, 0)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end
 
You have to change the variables. Like this:
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5.5, 0, 5.9, 0)

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)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 3.5, 0, 4.2, 0)

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


But aint this to good healing? :eek: I just want it to heal like 300hp more~
 
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 4.3, 0, 5.9, 0)
Play with this 2 numbers until u get the healing u want..
If you want to heal more write higher number , if more low then lower number
 
Back
Top