OOPs. I posted my answer to the wrong list....anyway here is what I had
written
------------------------------------
There is a title table in const.c, do a search for title_table. For every
level you have, you will have a male-female line for the class. Example:

<"Apprentice of Magic", "Apprentice of Magic">, in this case both the male
and
female titles of this class are the same. This list will go in the order
that
you have the classes defined. I would count the number of groups you have
and
compare it to the nuumber of classes you have (You can tell a new group
because usually it says <"Man", "Woman"> again. At least I did that so I
could
always find it. You may have taken out the class but you forgot about the
title.
------------------------------------

<snip>
                  wch->name, IS_NPC (wch) ? "" : wch->pcdata->title);
<snip>

The only other way would be NOT to print wch->pcdata->title (or just take
out the
default titles in const.c, but then you would end up getting NULL if players
dont
set their title.) Which is the problem here, because you have a class
without the
default titles being listed in const.c. Sorry for the long email, it was
late and
I was tired and posted to the wrong list, originally. Hope this helps!

Jim


Reply via email to