PDA

View Full Version : Titles for 60+?


SpyFlyBoy
05-06-2002, 07:17 AM
I was wondering if it is at all possible to make it so people titles change again at 61, 71, 81, 91, 100 (or somthing along those lines). I dont know much about the code for the EMU but I just thought I would make the suggestion =)

Baron Sprite
05-06-2002, 09:54 AM
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:

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 :D