blob: ec2668f604ce70628e46b23eccedad8612f1c352 (
plain) (
blame)
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
|
# warmachine
#
# choose the nickname for you bot.
NICKNAME = 'warmachine'
# (optional) Only for servers that have nickserv.
NICKSERV_PASSWORD =''
SERVER = 'irc.freenode.org'
PORT = 6667
IDENT = 'warmachine'
CHANNELS = ('#warmachine-dev',)
ADMINS = ('com4',)
ACTIONS = (
'wmd.actions.passive.nickserv.IdentWithNickserv',
'wmd.actions.passive.pong.RespondToPing',
)
try:
from local_settings import *
except ImportError:
pass
|