Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Solved


Kajamaz
 Share

Recommended Posts

There's no chart, it get determined by this sub:

```
Function GetPlayerNextLevel(ByVal Index As Long) As Long
    GetPlayerNextLevel = (50 / 3) * ((GetPlayerLevel(Index) + 1) ^ 3 - (6 * (GetPlayerLevel(Index) + 1) ^ 2) + 17 * (GetPlayerLevel(Index) + 1) - 12)
End Function
```
Link to comment
Share on other sites

There -is- no table for EXP.

Currently, it's a quadratic equation, in the form of
(50 ÷ 3) x (_l_ + 1)³ - (6 x (_l_ + 1)²) + (17 x (_l_ + 1) - 12

Where _l_ = level.

If you want to change that, you're better off getting a graph, drawing a curve with the ideal values, and getting an equation for it.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...