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

Healing

mocoba

New Member
Joined
Aug 23, 2008
Messages
332
Reaction score
0
How i change heal of exana mort it give like 200 i want it give 500
 
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 11, 15)

setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, A, B, C, D)
I think this means
minimum healing = ((mlvl*4)*A) + (lvl*A) + B
maximum healing = ((mlvl*4)*C) + (lvl*C) + D

Now I will count how much "exana mort" would heal a knight lvl=200, mlvl=10

minimum healing = ((10*4)*5) + (200*5) + 5 = 1205
maximum healing = ((10*4)*11) + (200*11) + 15 = 2665

So, that's the formula if you want to find out how much some spell/rune would heal.
 
Last edited:
Back
Top