Correct formula for hp/sp job_conf? for2 255/120 server

Some of the numbers generated are not overly accurate as you get to higher levels, but I'd say its 95% on the mark. Some numbers you will have to work around.

 
pre renewal formula
 

var BASE_HP;

BASE_HP = 35 + (BASE_LEVEL * HP_JOB_B ;

for (var i = 2; i <= BASE_LEVEL; i++)
{
BASE_HP += Math.round(HP_JOB_A * i);
}
Renewal Formula

var BASE_HP = 35;

BASE_HP += BASE_LEVEL * HP_JOB_B;

for (var i = 2; i <= BASE_LEVEL; i++) {
BASE_HP += Math.round(HP_JOB_A * i);
}

var MAX_HP = BASE_HP;

MAX_HP = Math.floor( MAX_HP * (1 + VIT * 0.01) * TRANS_MOD );

MAX_HP += HP_MOD_A;

MAX_HP = Math.floor( MAX_HP * (1 + HP_MOD_B * 0.01) );
 
Last edited by a moderator:
Thanks a lot sir Crousti but I got very high hp for 255/120 server still looking for help

 
I couldn't find the accurate fixed HP/SP for 255/120

That's the problem of herc when setting high-rate server using malufett tool isn't working properly. i tried that before but i fail.

 
Please!,... Someone can show me an example for the correct formula of hp/sp with base level 300... based on pre -re 
default_hmm.gif


 
Last edited by a moderator:
1. Choose eA formula.

2. Enter your multiplicator and factor. You can find these on rathena's job_db1 I think.

3. This was meant to be 4, tick this last.

4. Enter your level. Do this before 3.

The example here I put some random numbers in but you see it will generate them for you.

Untitled.png

 
Last edited by a moderator:
1. Choose eA formula.

2. Enter your multiplicator and factor. You can find these on rathena's job_db1 I think.

3. This was meant to be 4, tick this last.

4. Enter your level. Do this before 3.

The example here I put some random numbers in but you see it will generate them for you.

attachicon.gif
Untitled.png
Is it working with exact formula for Based: 255? I attempt to try this but my formula is always fail.But let me try again.

 
Last edited by a moderator:
Back
Top