Jump to content
  • 0

stat's table


HaureN

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   24
  • Joined:  10/17/13
  • Last Seen:  

heya,

this is my stats on novaRO (still, nova is wrong by 1 point)

unknown.png

Stat points (nova)
unknown.png

Stat points (rathena)

image.png.bb7129401deaab66736c248ad78602b3.png

this is from kro
unknown.png

so... i know stats table is not suppose to be right at this point (175 to 200) but any u guys know how to "regenerate" this file or even the "formula" for 175+ stats?
this is my code on JS to simulate. With my progression, stats exceed 4151 so on the last level a fixed with -4.

let sum = 3;
let stat = 100;
let level = [];

for(let i = 1; i <= 200; i++) {
	level.push(stat);
	// 0 ~ 99
	if (i < 100 && i%5 === 0) { sum++; }
    // 100 ~ 150
    else if (i <= 150 && i%10 === 0) { sum++; }
    // 150 ~ 175
    else if (i > 150 && i < 175 & (i-150)%7 === 0) { sum++; }
    // 175 ~ 20
    else if (i > 175 && i < 200 && (i-200)%5 === 0) { sum++ }

    if (i === 199) {
        // supose to be 35
        stat += 31;
        continue;
    }
    stat += sum;
}

 

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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.   Paste as plain text instead

  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.

×
×
  • Create New...