2000-10-27 19:06:26 -04:00
|
|
|
# these characters are automatically replaced with specified color
|
2000-12-02 21:20:49 -05:00
|
|
|
replaces = { "[]<>=" = "%K$0-%n"; };
|
2000-10-27 19:06:26 -04:00
|
|
|
|
|
|
|
# %n specifies the color set in higher level, like in
|
|
|
|
# {ctcp {nick $0-} requested ... }
|
|
|
|
# if the ctcp was specified as "%g$0-" and nick was "%W$0-%n", the
|
|
|
|
# "requested" text would be green
|
|
|
|
|
|
|
|
abstracts = {
|
2001-01-05 01:47:06 -05:00
|
|
|
##
|
|
|
|
## generic
|
|
|
|
##
|
|
|
|
|
|
|
|
# text to insert at the beginning of each non-message line
|
2000-11-20 22:02:04 -05:00
|
|
|
line_start = "%B-%W!%B-%n ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# timestamp styling, nothing by default
|
2001-01-01 05:43:04 -05:00
|
|
|
timestamp = "$0-";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# any kind of text that needs hilighting, default is to bold
|
2000-10-27 19:06:26 -04:00
|
|
|
hilight = "%_$0-%_";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# any kind of error message, default is bright red
|
2000-11-26 00:08:11 -05:00
|
|
|
error = "%R$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# channel name is printed
|
2000-10-27 19:06:26 -04:00
|
|
|
channel = "%_$0-%_";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# nick is printed
|
2000-10-27 19:06:26 -04:00
|
|
|
nick = "%_$0-%_";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# nick host is printed
|
2000-11-26 00:08:11 -05:00
|
|
|
nickhost = "[$0-]";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# server name is printed
|
2000-10-27 19:06:26 -04:00
|
|
|
server = "%_$0-%_";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# some kind of comment is printed
|
2000-12-02 21:20:49 -05:00
|
|
|
comment = "[$0-]";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# reason for something is printed (part, quit, kick, ..)
|
2000-12-02 21:20:49 -05:00
|
|
|
reason = "{comment $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# mode change is printed ([+o nick])
|
2000-12-02 21:20:49 -05:00
|
|
|
mode = "{comment $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
##
|
|
|
|
## channel specific messages
|
|
|
|
##
|
|
|
|
|
|
|
|
# highlighted nick/host is printed (joins)
|
2000-10-27 19:06:26 -04:00
|
|
|
channick_hilight = "%C$0-%n";
|
2000-11-26 00:08:11 -05:00
|
|
|
chanhost_hilight = "{nickhost %c$0-%n}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# nick/host is printed (parts, quits, etc.)
|
2000-10-27 19:06:26 -04:00
|
|
|
channick = "%c$0-%n";
|
2000-11-26 00:08:11 -05:00
|
|
|
chanhost = "{nickhost $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# highlighted channel name is printed
|
2000-10-27 19:06:26 -04:00
|
|
|
channelhilight = "%c$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# ban/ban exception/invite list mask is printed
|
2000-10-27 19:06:26 -04:00
|
|
|
ban = "%c$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
##
|
|
|
|
## messages
|
|
|
|
##
|
|
|
|
|
|
|
|
# the basic styling of how to print message
|
2000-10-27 19:06:26 -04:00
|
|
|
msgnick = "<$0-> %|";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# message from you is printed. "msgownnick" specifies the styling of the
|
|
|
|
# nick ($0 part in msgnick) and "ownmsgnick" specifies the styling of the
|
|
|
|
# whole line. For example if you want the message text to be in different
|
|
|
|
# color, green for example, add %g after ownmsgnick (if it were in
|
|
|
|
# msgownnick, you'd get green '>' char after nick too)
|
2000-12-02 21:20:49 -05:00
|
|
|
ownmsgnick = "{msgnick $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
msgownnick = "%W$0-%n";
|
|
|
|
|
|
|
|
# public message in channel
|
2000-12-02 21:20:49 -05:00
|
|
|
pubmsgnick = "{msgnick $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# public message in channel meant for me
|
2000-12-02 21:20:49 -05:00
|
|
|
pubmsgmenick = "{msgnick $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
msgme = "%Y$0-%n";
|
|
|
|
|
|
|
|
# public highlighted message in channel
|
|
|
|
# $0 = highlight color, $1 = nick mode (@, +), $2 = nick
|
2000-12-02 21:20:49 -05:00
|
|
|
pubmsghinick = "{msgnick $1$0$2-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# channel name is printed with message
|
2000-10-27 19:06:26 -04:00
|
|
|
msgchannel = "%K:%c$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# private message, $0 = nick, $1 = host
|
2000-12-02 21:20:49 -05:00
|
|
|
privmsg = "[%R$0%K(%r$1-%K)%n] ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# private message from you, $0 = "msg", $1 = target nick
|
2000-12-04 04:18:58 -05:00
|
|
|
ownprivmsg = "[%r$0%K(%R$1-%K)%n] ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# private message in query
|
|
|
|
privmsgnick = "{msgnick %R$0-%n}";
|
|
|
|
|
|
|
|
##
|
|
|
|
## other IRC events
|
|
|
|
##
|
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# actions
|
2000-10-27 19:06:26 -04:00
|
|
|
action = "%W * $0-%n ";
|
|
|
|
ownaction = "{action $0-}";
|
|
|
|
pvtaction = "%W (*) $0-%n ";
|
|
|
|
pvtaction_query = "{action $0-}";
|
|
|
|
pubaction = "{action $0-}";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# notices
|
|
|
|
ownnotice = "[%r$0%K(%R$1-%K)]%n ";
|
2000-10-27 19:06:26 -04:00
|
|
|
notice = "%K-%M$0-%K-%n ";
|
2000-11-26 00:08:11 -05:00
|
|
|
pubnotice_channel = "%K:%m$0-";
|
2000-12-02 21:20:49 -05:00
|
|
|
pvtnotice_host = "%K(%m$0-%K)";
|
2000-10-27 19:06:26 -04:00
|
|
|
servernotice = "%g!$0-%n ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# CTCPs
|
2000-12-02 21:20:49 -05:00
|
|
|
ownctcp = "[%r$0%K(%R$1-%K)] ";
|
2000-10-27 19:06:26 -04:00
|
|
|
ctcp = "%g$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# wall
|
|
|
|
ownwall = "[%W$0%K/%c$1-] ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# wallops
|
2000-10-27 19:06:26 -04:00
|
|
|
wallop = "%W$0-%n: ";
|
|
|
|
wallop_nick = "%n$0-";
|
|
|
|
wallop_action = "%W * $0-%n ";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# netsplits
|
2000-11-02 15:54:22 -05:00
|
|
|
netsplit = "%R$0-%n";
|
2000-10-27 19:06:26 -04:00
|
|
|
netjoin = "%C$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
2000-12-02 21:20:49 -05:00
|
|
|
# /names list
|
|
|
|
names_nick = "[%_$0%_$1-] ";
|
2000-10-27 19:06:26 -04:00
|
|
|
names_users = "[%g$0-%n]";
|
|
|
|
names_channel = "%G$0-%n";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# DCC
|
2000-10-27 19:06:26 -04:00
|
|
|
dcc = "%g$0-%n";
|
|
|
|
dccfile = "%_$0-%_";
|
2001-01-05 01:47:06 -05:00
|
|
|
|
|
|
|
# DCC chat
|
2000-12-03 01:36:19 -05:00
|
|
|
dccownmsg = "[%r$0%K(%R$1-%K)%n] ";
|
2000-10-27 19:06:26 -04:00
|
|
|
dccownaction = "{action $0-}";
|
2000-12-02 21:20:49 -05:00
|
|
|
dccmsg = "[%G$1-%K(%g$0%K)%n] ";
|
2000-10-27 19:06:26 -04:00
|
|
|
dccquerynick = "%G$0-%n";
|
|
|
|
dccaction = "%W (*dcc*) $0-%n %|";
|
|
|
|
};
|