diff options
Diffstat (limited to 'include/dreamforge.h')
-rw-r--r-- | include/dreamforge.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/include/dreamforge.h b/include/dreamforge.h index f5f3c755f..414e0639c 100644 --- a/include/dreamforge.h +++ b/include/dreamforge.h @@ -13,10 +13,8 @@ #ifdef IRC_DREAMFORGE -#define OWNER_SET_MODE "+" -#define OWNER_UNSET_MODE "+" #define PROTECT_SET_MODE "+" -#define PROTECT_UNSET_MODE "+" +#define PROTECT_UNSET_MODE "-" #define CS_CMD_PROTECT "PROTECT" #define CS_CMD_DEPROTECT "DEPROTECT" #define FANT_PROTECT_ADD "!protect" @@ -25,14 +23,19 @@ #define LEVELINFO_PROTECT_WORD "PROTECT" #define LEVELINFO_PROTECTME_WORD "PROTECTME" -#define UMODE_a 0x00000001 -#define UMODE_h 0x00000002 -#define UMODE_i 0x00000004 -#define UMODE_o 0x00000008 -#define UMODE_r 0x00000010 -#define UMODE_w 0x00000020 -#define UMODE_A 0x00000040 -#define UMODE_g 0x80000000 +#define UMODE_a 0x00000001 /* Services Admin */ +#define UMODE_h 0x00000002 /* Help system operator */ +#define UMODE_i 0x00000004 /* makes user invisible */ +#define UMODE_o 0x00000008 /* Operator */ +#define UMODE_r 0x00000010 /* Nick set by services as registered */ +#define UMODE_w 0x00000020 /* send wallops to them */ +#define UMODE_A 0x00000040 /* Admin */ +#define UMODE_O 0x00000080 /* Local operator */ +#define UMODE_s 0x00000100 /* server notices such as kill */ +#define UMODE_k 0x00000200 /* Show server-kills... */ +#define UMODE_c 0x00000400 /* Show client information */ +#define UMODE_f 0x00000800 /* Receive flood warnings */ +#define UMODE_g 0x80000000 /* Shows some global messages */ #define CMODE_i 0x00000001 #define CMODE_m 0x00000002 |