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/
Sundermud 1.0 Intermud-3
------------------------

In i3.c, remove the #include statement for tables.h
And on line 152, remove the wiznet call.

In i3cfg.h, in the #ifdef I3ROM section:

Find:
   #define CH_CLAN(ch)		((ch)->clan)
   #define CH_CLANNAME(ch)	(clan_table[(ch)->clan].who_name)
Replace with:
   #define CH_CLAN(ch)		((ch)->pcdata->clan_num != -1)
   #define CH_CLANNAME(ch)	((ch)->pcdata->clan_name)

Find:
   #define CH_AFK(ch)	(IS_SET((ch)->comm, COMM_AFK ))
Replace with:
   #define CH_AFK(ch)	(IS_SET((ch)->act, PLR_AFK ))