I want to make a progression value that constantly doubles from 100 to 200 then 400 then 800, etc. It gradually gets more difficult to get to this value. Does anyone know how I can make this without using a loop?
Nevermind I figured it out for anyone who wants to know:
startingamount*2^level
Don’t forget to mark that as a solution so people see that your issue has already been solved.
It did what I wanted but expectation met result, and it turned out to be not what I wanted. Regardless it is what I wanted previously so I’ll mark it as solved because I decided to do something else instead.
(Level ^ 1.25) * 100
–Level 1 = 100
–Level 2 = 238 --138
–Level 3 = 395 --157
–Level 4 = 566 --171
You can use a formula that decays exponentially.
1 Like