mud title and wiz titles

Posted by Proto-6 on Sun 02 Feb 2003 10:27 PM — 2 posts, 11,620 views.

Canada #0
ok just a quick question hear how to you chang the mud host title E.G. localhost to Joblo mud. allso the wiz titles E.G. suprem entity to grand king
USA #1
I'm not sure what you are asking for the localhost deal. Do you mean when you login? Please define that a little more so I could try and help.

As for the wiz titles, I'm assuming you mean changing them for wizlist. If that is so then just follow these steps:

Go into db.c and into the make_wizlist funtion.
One thing you might have forgotten to change (I know I did at first..) is the title on the wizlist.

The small section of code to change this looks like this:

buf[0] = '\0';
unlink( WIZLIST_FILE );
towizfile( " What ever the title is and blah" );

To change that just change whats inside the quotes.

The easiest way to really change the wiz titles is to just go and find what it already says. A line might look like this:

case MAX_LEVEL - 0: towizfile( " Supreme Masters" ); break;

All you need to do is change the Supreme masters and what not to what you want. Depending on your game (for mine I have 7 immortal levels) you will have a few differen't levels to rename.

If that didn't help you on what you were asking then please post again so I can try and help more.