yeah that's easy to do, what I was doing before my weekend somehow went away was adding gender to them, what you would do is just something like:
	Code:
			case CLERIC:
		        if (level >= 70)
				return "Disciple of Marr";
                        else if (level >= 60)
				return "High Priest";
			else if (level >= 55)
				return "Templar";
			else if (level >= 51)
				return "Vicar";
			else
				return "Cleric";
 in your classes.cpp in the world workspace then recompile... pretty easy :p
do it minus the lame spacing of course 
