Created
July 20, 2015 09:44
-
-
Save adamtester/637b9d34bf9824d2190a to your computer and use it in GitHub Desktop.
Code for the levelling system for Vevvu Platform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getLevels($cEXP) { | |
for($i = 1; ($i * $i + 2) * $i <= $cEXP; $i++); | |
return $i; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment