EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Archive::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=621)
-   -   Titles for 60+? (https://www.eqemulator.org/forums/showthread.php?t=1697)

SpyFlyBoy 05-06-2002 07:17 AM

Titles for 60+?
 
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:
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 :D


All times are GMT -4. The time now is 03:37 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.