dotd-2.3.7/area/
dotd-2.3.7/clans/
dotd-2.3.7/classes/
dotd-2.3.7/councils/
dotd-2.3.7/deity/
dotd-2.3.7/dict/
dotd-2.3.7/doc/mudprogs/
dotd-2.3.7/player/a/
dotd-2.3.7/player/g/
Godwars Dystopia 1.4 Intermud-3
-------------------------------

In the #ifdef I3MERC section:

Find:
   #define I3NOTELL(ch) 	(IS_SET((ch)->act, PLR_NO_TELL))
Replace with:
   #define I3NOTELL(ch)         (IS_SET((ch)->deaf, CHANNEL_TELL) && !IS_IMMORTAL((ch)))

Find:
   #define CH_CLASSNAME(ch)	(class_table[(ch)->class].who_name)
   #define CH_RANK(ch)		(title_table[(ch)->class][(ch)->level][(ch)->sex == SEX_FEMALE ? 1 : 0])
Replace with:
   #define CH_CLASSNAME(ch)   ( "" )
   #define CH_RANK(ch)        ( IS_IMMORTAL((ch)) ? "Immortal" : "Player" )