The experience tag has no wiki summary.
0
votes
1answer
28 views
problem updating labels
I am using the following code to handle xp gains:
reqXP = (Level ^ 2 + Level + 3) * 4
If (currXP >= reqXP) Then
Level = Level + 1
expPoints = expPoints + 3
excessXP ...
-5
votes
1answer
127 views
Game dev. in C, experience [closed]
I started studying C 3 month ago and I still find it quite harsh sometimes :)
I'd like to get involved in some kind of game open source project to get some experience with both C and game development ...
0
votes
2answers
327 views
Calculating an experience formula
I'm having trouble working out a formula using this experience curve to get the total exp after each level. I bet its easy and im just over thinking it.
maxlvl = 10;
increment = 28;
baseexp = 100;
...
24
votes
2answers
3k views
How to create adjustable formula for RPG level up requirements?
I'm trying to create a formula that can be modified simply by changing two values: number_of_levels, and last_level_experience. This is to enable people modding the game to change the levelling ...
5
votes
6answers
688 views
Is there a typical career path to learn game development “on the job”?
The extended version of the question is: what is the typical career paths that a developer without specific experience in game development should take if he/she wishes to work in the game development ...
10
votes
2answers
2k views
How to implement an experience system?
I'm currently writing a small game that is based on earning experiences when killing enemies. As usual, each level requires more experience gain than the level before, and on higher levels killing ...
3
votes
6answers
1k views
Character Stats and Power
I'm making an RPG game system and I'm having a hard time deciding on doing detailed or abstract character statistics. These statistics define the character's natural - not learned - abilities. For ...