source: TopicEngine/TopicEngineSettings.tcl @ 1

Revision 1, 2.6 KB checked in by notopic, 6 years ago (diff)

Import

Line 
1## TopicEngine settings file
2
3#####
4# Settings you can change
5#
6# Channels the script applies to:
7#set topicChannels [list "#molsoft" "#ags" "#exeter"]
8
9#
10# Maximum topic length for the network
11#
12# 80 is the safest setting for IRCNet, 120 and 160 are common (watch out for
13#   truncation though)
14# 120 is typical on EFNet
15set topicLengthLimit 120
16
17#
18# Announce a topic being reset after a split? (0/1)
19set topicAnnounceReset 1
20
21#
22# This is the char (or several chars) that separate a topic. A space will go each side of this string.
23set topicSeparator "|"
24
25#
26# Respond to "!topic info" in the chan or in notice (just to the user to did it)
27# 1 = channel, 0 = notice
28set topicInfoBroadcast 1
29
30#DO NOT REMOVE THIS LINE:
31if {$topicEngineLoad == 1} {
32# HOW TO USE:
33# (please also read the readme file)
34#
35# set values for channels in here, like this:
36#
37# set topicInfo(#channel,setting) <value>
38#
39# setting               value(s)                              Default
40# -------               --------                              -------
41#
42# leadIn                Default prefix for topic              (blank)
43# leadOut               Default postfix                       (blank)
44# NO! needOChan             1 = user needs |+o to use             1
45# needVChan             1 = user needs |+v to use             1
46# needOGlobal           1 = user needs +o to use              0
47# needVGlobal           1 = user needs +v to use              0
48# needOMode             1 = user must be @ in chan            0
49# needVMode             1 = user must be + in chan            0
50# Tflag                 1 = any +T user can use (and U can't) 1
51# topicBits             [list "topicBit1" "topicBit2" ...]    (empty list)
52# learnOnChange         1 = learn topic on change (and join)  1
53#
54# Do not set other settings in the topicInfo array.
55#
56# e.g to set the default topic for #lamest to be "www.lamest.net | pop | frogs"
57# where the URL is a prefix, do this:
58#
59# set topicInfo(#lamest,leadIn) "www.lamest.net"
60# set topicInfo(#lamest,topicBits) [list "pop" "frogs"]
61#
62
63#set topicInfo(#startrek,needVChan) 1
64set topicInfo(#startrek,leadIn) "http://utopia.planitia.net"
65
66set topicInfo(#startrek,canFlags) "o|o"
67
68#set topicInfo(#namcoarcade,needVChan) 0
69#set topicInfo(#exeter,needVChan) 1
70
71set topicInfo(#exeter,canFlags) "ov|ov"
72set topicInfo(#exeter,canModes) "ov"
73set topicInfo(#exeter,leadIn) "www.hashexeter.net"
74
75#set topicInfo(#ags,needVChan) 1
76set topicInfo(#exeter,canFlags) "ov|ov"
77set topicInfo(#exeter,canModes) "ov"
78
79set topicInfo(#molsoft,canFlags) "ov|ov"
80
81set topicInfo(#molsoft,canFlags) "o|o"
82set topicInfo(#molsoft,canModes) "o"
83
84#DO NOT REMOVE THIS BRACKET
85}
Note: See TracBrowser for help on using the repository browser.