<huge snip>
void load_classes ()
{
int i,j;
for (i = 0; i < MAX_CLASS; i++)
{
for (j = 0; j < MAX_SKILL; j++)
--->112 skill_table[j].skill_level[i] = LEVEL_IMMORTAL;
load_class (i);
}
}
</snip>
Ok, first of all, what is MAX_SKILL? as in, what number. Secondly, how
many actual skills do you have? Is it possible that you are trying to read
non-existant skills?
A good way to check is to do:
print j
print i
print skill_table[j].name
That would be my first guess.
Rheede

