Ecstacy
Mothafuckaaa
Hello,
I was reading some tutorial about making your own spells since I don't understand how to make them.
I used this part
But it didn't work, that's why I'm asking support obviously.
Now my rune needs to do the following:
It must heal 1x the users magic level.
It must heal 10x the users combat level.
minium healing should be 150 hp
maximum healing should be 1.000.000 hp (fun server)
I've got this:
But a level 9,800 character only heals 400 - 700 hp, and that's not what I want by far.
Could anyone explain how to do it, rather than only fixing it, so that I understand how formula's work?
Thanks in advance,
unknown666
I was reading some tutorial about making your own spells since I don't understand how to make them.
I used this part
HTML:
setCombatFormula(combat1, COMBAT_FORMULA_LEVELMAGIC, -0.6, 0, -1.1, 0)
now this is a little more complicated ;p. this is how much the rune will actually HIT(damage amount). LEVELMAGIC in this case is the main skill for the rune. "-0.6, 0, -1.1, 0)" The first number is your multiplier of your MAIN skill(the one you set in the script) which in this case is magic level. The second number is the minimum damage be(be sure to put a "-" sign or else you will heal the enemy) dealt by the rune for THAT effect.
The third number is the multiplier of your character level. The fourth number is the maximum damage done by THAT effect(also be sure to put a "-" sign). you can leave the max damage blank, and the minimum, as long as u have atleast one multiplier it wills till make damage, if u just want the effect to hit 50-100 leave the multiplies 0 and make the second and fourth numbers 50 and 100.
But it didn't work, that's why I'm asking support obviously.
Now my rune needs to do the following:
It must heal 1x the users magic level.
It must heal 10x the users combat level.
minium healing should be 150 hp
maximum healing should be 1.000.000 hp (fun server)
I've got this:
LUA:
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 10, 100, 10, 0)
But a level 9,800 character only heals 400 - 700 hp, and that's not what I want by far.
Could anyone explain how to do it, rather than only fixing it, so that I understand how formula's work?
Thanks in advance,
unknown666