1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/*
* err.h
* Copyright (C) 1998-1999 Patrick Alken
*
* $Id: err.h,v 1.1.1.1 2001/03/03 01:48:53 wcampbel Exp $
*/
#ifndef INCLUDED_err_h
#define INCLUDED_err_h
#define ERR_NOPRIVS "No privileges"
/* NickServ error messages */
#define ERR_NOT_YOUR_NICK "This nickname is owned by someone else"
#define ERR_NEED_IDENTIFY "If this is your nickname, type /msg %s \002IDENTIFY\002 <password>"
#define ERR_MUST_CHANGE "If you do not \002IDENTIFY\002 within one minute, you will be disconnected"
#define ERR_NOT_REGGED "The nickname [\002%s\002] is not registered"
#define ERR_MORE_INFO "Type: \002/msg %s HELP %s\002 for more information"
#define ERR_BAD_PASS "Password Incorrect"
#define ERR_NO_HELP "No help available on \002%s %s\002"
#define ERR_NOT_LINKED "The nickname [\002%s\002] is not linked"
/* ChanServ error messages */
#define ERR_CH_NOT_REGGED "The channel [\002%s\002] is not registered"
#define ERR_NEED_ACCESS "An access level of [\002%d\002] is required for [\002%s\002] on %s"
#endif /* INCLUDED_err_h */
|