LiamKarlMitchell / InfiniteSky

InfiniteSky is an open-source mmorpg project, It is written in Node.JS
GNU General Public License v3.0
33 stars 42 forks source link

Finding combine rates #174

Open przemyslawwalczak opened 9 years ago

przemyslawwalczak commented 9 years ago

Need to find the rate calculations.

LiamKarlMitchell commented 6 years ago

Hmm let me see

N Cost Chance?
0 500000 700
1 1000000 600
2 1500000 550
3 2000000 500
4 2500000 450
5 3000000 400
6 3500000 350
7 4000000 300
8 4500000 250
9 5000000 200
10 5500000 150
11 6000000 100

If Lucky Combine then use it and add 50 to the chance.

if rng() % 1000 < chance
  success? I think.
Cost = 500000 * (combineStage+1)

image

LiamKarlMitchell commented 6 years ago

Thanks :) let us know about anything else that comes too mind.