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

Exori Frigo/Tera Balance Simple Script

Acrenactive

★Designer★
Joined
Mar 21, 2013
Messages
224
Reaction score
55
Location
Los Angels L.A
Hey,
Ladies & Gentlemen!


It is now so I want to fix a balanced spell Exori frigo and Exori tera.
I want it to balance magic lvl, But if it works do in level 200, 700 atk on monsters like demon and if you have around 95 magic lvl and in level 460 takes you in damage 1400 on monster, magic LVL 110.
The highest of the server should be around the level 500 they should take 2200 damage on monsters
with 125 magic lvl.

Hope you will have a wonderful day and I hope some of you will help me :p

8.60 TFS 0.4

local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ICEATTACK)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SMALLICE)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -1540, -1, -1500)

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









 
Last edited:
200lvl, 95 magic lvl should be able to deal 700dmg on demon

460lvl, 110magic lvl , deals 1400dmg on monster (demon too?)

500lvl, 125 mlvl deals 2200 dmg (max)

Demon is taking 110% ice damage
from Demon.xml
Code:
<element icePercent="-10" />

Is it right?
 
You should first consider having a formula for this..
MSP97321f1599637646061f00003246f2e1aeeh2gfi


This is linear solution from wolframalpha for your problem.
 
You should first consider having a formula for this..
MSP97321f1599637646061f00003246f2e1aeeh2gfi


This is linear solution from wolframalpha for your problem.

With this formula, the player with level 1 and magic lvl 0 will heal for 4k~ points instead of dealing dmg until reaching 82 magic lvl where his dmg will be able to hurt enemies.
 
With this formula, the player with level 1 and magic lvl 0 will heal for 4k~ points instead of dealing dmg until reaching 82 magic lvl where his dmg will be able to hurt enemies.

This is just a linear approximation of the solutions he gave.

It is not very hard to add boundaries and then use the formula. It will always be the best approximation if he wants a linear solution.
 
Back
Top