blob: d135485983d66cb6fdc6967d8a0e652a8d4717c8 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* Viagra IRCD functions
*
* (C) 2003 Anope Team
* Contact us at info@anope.org
*
* Please read COPYING and README for furhter details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
*
*/
#ifdef IRC_VIAGRA
#define PROTECT_SET_MODE "+a"
#define PROTECT_UNSET_MODE "-a"
#define CS_CMD_PROTECT "PROTECT"
#define CS_CMD_DEPROTECT "DEPROTECT"
#define FANT_PROTECT_ADD "!protect"
#define FANT_PROTECT_DEL "!deprotect"
#define LEVEL_PROTECT_WORD "AUTOPROTECT"
#define LEVELINFO_PROTECT_WORD "PROTECT"
#define LEVELINFO_PROTECTME_WORD "PROTECTME"
/* User Modes */
#define UMODE_A 0x00000040 /* Is a Server Administrator. */
#define UMODE_C 0x00002000 /* Is a Server Co Administrator. */
#define UMODE_I 0x00008000 /* Stealth mode, makes you beeing hidden at channel. invisible joins/parts. */
#define UMODE_N 0x00000400 /* Is a Network Administrator. */
#define UMODE_O 0x00004000 /* Local IRC Operator. */
#define UMODE_Q 0x00001000 /* Is an Abuse Administrator. */
#define UMODE_R 0x08000000 /* Cant receive messages from non registered user. */
#define UMODE_S 0x00000080 /* Is a Network Service. For Services only. */
#define UMODE_T 0x00000800 /* Is a Technical Administrator. */
#define UMODE_a 0x00000001 /* Is a Services Administrator. */
#define UMODE_b 0x00040000 /* Can listen to generic bot warnings. */
#define UMODE_c 0x00010000 /* See's all connects/disconnects on local server. */
#define UMODE_d 0x00000100 /* Can listen to debug and channel cration notices. */
#define UMODE_e 0x00080000 /* Can see client connections/exits on remote servers. */
#define UMODE_f 0x00100000 /* Listen to flood/spam alerts from server. */
#define UMODE_g 0x00000200 /* Can read & send to globops, and locops. */
#define UMODE_h 0x00000002 /* Is a Help Operator. */
#define UMODE_i 0x00000004 /* Invisible (Not shown in /who and /names searches). */
#define UMODE_n 0x00020000 /* Can see client nick change notices. */
#define UMODE_o 0x00000008 /* Global IRC Operator. */
#define UMODE_r 0x00000010 /* Identifies the nick as being registered. */
#define UMODE_s 0x00200000 /* Can listen to generic server messages. */
#define UMODE_w 0x00000020 /* Can listen to wallop messages. */
#define UMODE_x 0x40000000 /* Gives the user hidden hostname. */
/* Channel Modes */
#define CMODE_i 0x00000001 /* Invite-only allowed. */
#define CMODE_m 0x00000002 /* Moderated channel, noone can speak and changing nick except users with mode +vho */
#define CMODE_n 0x00000004 /* No messages from outside channel */
#define CMODE_p 0x00000008 /* Private channel. */
#define CMODE_s 0x00000010 /* Secret channel. */
#define CMODE_t 0x00000020 /* Only channel operators may set the topic */
#define CMODE_k 0x00000040 /* Needs the channel key to join the channel */
#define CMODE_l 0x00000080 /* Channel may hold at most <number> of users */
#define CMODE_R 0x00000100 /* Requires a registered nickname to join the channel. */
#define CMODE_r 0x00000200 /* Channel is registered. */
#define CMODE_c 0x00000400 /* No ANSI color can be sent to the channel */
#define CMODE_M 0x00000800 /* Requires a registered nickname to speak at the channel. */
#define CMODE_H 0x00001000 /* HelpOps only channel. */
#define CMODE_O 0x00008000 /* IRCOps only channel. */
#define CMODE_S 0x00020000 /* Strips all mesages out of colors. */
#define CMODE_N 0x01000000 /* No nickchanges allowed. */
#define CMODE_P 0x02000000 /* "Peace mode" No kicks allowed unless by u:lines */
#define CMODE_x 0x04000000 /* No bold/underlined or reversed text can be sent to the channel */
#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r
#endif
|