Jump to content
  • 0
Sign in to follow this  
nuna

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

Question

12 answers to this question

Recommended Posts

  • 0

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.

Share this post


Link to post
Share on other sites
  • 0

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) );

Edited by ChristopherLoko™

Share this post


Link to post
Share on other sites
  • 0

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.

Share this post


Link to post
Share on other sites
  • 0

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

Edited by OmarAcero

Share this post


Link to post
Share on other sites
  • 0

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.

 

post-12195-0-29244900-1464069815_thumb.png

Edited by True Zeal

Share this post


Link to post
Share on other sites
  • 0

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.

Edited by Eternity

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.