this is my stats on novaRO (still, nova is wrong by 1 point)
Stat points (nova)
Stat points (rathena)
this is from kro
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;
}
Question
HaureN
heya,
this is my stats on novaRO (still, nova is wrong by 1 point)
Stat points (nova)
Stat points (rathena)
this is from kro

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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.