Thread: Titles for 60+?
View Single Post
  #2  
Old 05-06-2002, 09:54 AM
Baron Sprite's Avatar
Baron Sprite
Dragon
 
Join Date: Jan 2002
Posts: 708
Default

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
__________________
Waking up in the morgue is pretty harsh, but it beats being dead.
Begun, this irc stat war has.
Reply With Quote