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

Edit Runes

hellyea

OT-Fan
Joined
Jan 26, 2009
Messages
92
Reaction score
6
Location
Germany
hey guys, im new to all that shit :PPP

Got 1 Question again.- How to edit Runes?

My Ultimate Healing rune just heals 120 - 200
Thats way to low.. :O Already tried with higher ML LVL etc.
 
min = (level * 1 + maglevel * 4) * 2.08
max = (level * 1 + maglevel * 4) * 2.7
change that 2.08 and 2.7(or w/e urs may be) to whatever you desire them to be they are level and maglevel multipliers so dont put like 100 ;p.
 
Where i can edit this? in the Script Folder -> Ultimate healing rune? If yes there is just "unknown" stuff for me! :P

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_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 1.0, 1.3)

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