Don't have access to all the source, but I have s classes.cpp and a few others... I was wondering, would anything like this work out? dunno if gender is based on 1/0 or male/female. Oh well guess I will mess around when I get home, was just a little feature that bugged me in eq. Lalala
case CLERIC:
if (level >= 60 && gender == 1)
return "High Priestess";
else if (level >= 60 && gender == 0)
return "High Priest";
else if (level >= 55)
return "Templar";
else if (level >= 51)
return "Vicar";
else
return "Cleric";