Home | History | Annotate | Download | only in larn

Lines Matching refs:EXPERIENCE

8  * raiseexperience(x)	subroutine to increase experience points
9 * loseexperience(x) subroutine to lose experience points
42 uses c[EXPERIENCE] c[LEVEL]
48 raiseexperience((long) (skill[c[LEVEL]] - c[EXPERIENCE]));
60 loseexperience((long) (c[EXPERIENCE] - skill[c[LEVEL] - 1] + 1));
66 subroutine to increase experience points
73 c[EXPERIENCE] += x;
74 while (c[EXPERIENCE] >= skill[c[LEVEL]] && (c[LEVEL] < MAXPLEVEL)) {
93 subroutine to lose experience points
100 c[EXPERIENCE] -= x;
101 if (c[EXPERIENCE] < 0)
102 c[EXPERIENCE] = 0;
103 while (c[EXPERIENCE] < skill[c[LEVEL] - 1]) {