musicmud-2.1.6/data/
musicmud-2.1.6/data/help/
musicmud-2.1.6/data/policy/
musicmud-2.1.6/data/wild/
musicmud-2.1.6/data/world/
musicmud-2.1.6/doc/
musicmud-2.1.6/src/ident/
musicmud-2.1.6/src/lua/
musicmud-2.1.6/src/lua/include/
musicmud-2.1.6/src/lua/src/lib/
musicmud-2.1.6/src/lua/src/lua/
musicmud-2.1.6/src/lua/src/luac/
// Client for aberchat

#ifndef _ABERCHAT_CLIENT_
#define _ABERCHAT_CLIENT_

#include "musicversion.h"
#include "Socket.h"
#include "config.h"

#define MUDLIB     "Music " MUSICVERSION

#define READLEN    4096
#define WRITELEN   4096
#define TO_MUD     '0'
#define TO_ALL     '1'

#define AUTH       '0'
#define MUDLIST    '1'
#define ECHOTXT    '2'
#define TELL       '3'
#define CHAT       '4'
#define WHO        '5'
#define RWHO       '6'
#define INFOMSG    '7'
#define MSG        '8'
#define KICK       '9'
#define AVERSION   ':'
#define FILEPAGE   ';'
#define AGOD       '<'
#define ACODE      '='
#define AVERREQ    '>'
#define ABERMAIL   '?'
#define SOCIALREQ  '@'
#define SOCIALANS  'A'
#define USERS      'B'
#define RUSERS     'C'

#define D       "\007"
#define DCHAR     007

#define DASHES "^b------------------------------------------"\
		"-------------------------------------^n\n"

#endif