blob: beda64f4b0235ac8a7d6c00fa77b8845b94c5f23 (
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
27
28
29
30
31
32
33
34
35
36
37
|
# warmachine
#
import os
# 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'
PASSWORD = os.environ['PASSWORD']
CHANNELS = ('#lobby',)
ADMINS = ('jason',)
DB_PATH = "enderlabs.db"
ACTIONS = (
'wmd.actions.passive.pong.RespondToPing',
'wmd.actions.passive.topic_archive.TopicArchive',
'wmd.actions.passive.rejoin_on_kick.RejoinOnKick',
'wmd.actions.modules.ReloadModule',
'wmd.actions.modules.LoadModule',
'wmd.actions.modules.ListModules',
'wmd.actions.modules.UnloadModule',
'wmd.actions.google.GoogleSearch',
'wmd.actions.giphy.GiphySearch',
)
try:
from local_settings import *
except ImportError:
pass
|