Guide to Game Development/Miscellaneous/Implementing an XP system
Appearance
Programming XP - Avoiding overflows
[edit | edit source]In a traditional game, the higher your level is, the more XP you'll need to get another level up. The problem with a basic approach to this is that you could very quickly run into stack overflow problems.
Example of bad code with overflows
[edit | edit source]Example of fixed code without overflow problems
[edit | edit source]