- Found in:
- SKSE
Description
Wiki Description
Returns the required amount of experience for the next level up. (This function requires SKSE.)
Documentation Comment
Calculates the experience required for to level-up
(fXPLevelUpBase + currentLevel * fXPLevelUpMult)
Caveats
CK Wiki - Notes
- This function only returns the total experience needed to level up. Use Game.GetPlayerExperience() when you want to know the amount of experience gained for the current level.
Parameters
intcurrentLevel
Examples
No human-generated examples found for this function.
Auto-Generated Example
int myInt__currentLevel
float returnedValue = Game.GetExperienceForLevel(myInt__currentLevel)