legend/
legend/area/
legend/player/
/***************************************************************************
 *  God Wars Mud copyright (C) 1994, 1995, 1996 by Richard Woolcock        *
 *                                                                         *
 *  Legend of Chrystancia copyright (C) 1999, 2000, 2001 by Matthew Little *
 *  This mud is NOT to be copied in whole or in part, or to be run without *
 *  the permission of Matthew Little. Nobody else has permission to        *
 *  authorise the use of this code.                                        *
 ***************************************************************************/

/*
 * mudinfo.h
 *
 * A quick piece of code that allows mudadmins to track the activity of
 * their mud, and create statistics of that activity.
 *
 * Code by Brian Graversen aka Jobo
 */


#define MUDINFO_UPDATED      0
#define MUDINFO_MCCP_USERS   1
#define MUDINFO_OTHER_USERS  2
#define MUDINFO_PEAK_USERS   3
#define MUDINFO_MBYTE        4
#define MUDINFO_BYTE         5
#define MUDINFO_DATA_PEAK    6
#define MUDINFO_MBYTE_S      7
#define MUDINFO_BYTE_S       8
#define MUDINFO_MAX          9


/*
 * Internal functions
 */

void  save_mudinfo             args (( void ));
void  write_mudinfo_database   args (( void ));


/*
 * Let's define the needed array
 */
int   mudinfo[MUDINFO_MAX];
int   total_output;