Add hunting grounds
This commit is contained in:
parent
fd58557561
commit
94defa6259
2 changed files with 2 additions and 1 deletions
2
bot.php
2
bot.php
|
@ -20,6 +20,6 @@ $irc->registerActionhandler(SMARTIRC_TYPE_NICKCHANGE, '', $bot, 'nickFinder');
|
||||||
$irc->registerActionhandler(SMARTIRC_TYPE_JOIN, '', $bot, 'nickFinder');
|
$irc->registerActionhandler(SMARTIRC_TYPE_JOIN, '', $bot, 'nickFinder');
|
||||||
|
|
||||||
$irc->login($conf->nick, 'ImgurBot', 0, $conf->nick);
|
$irc->login($conf->nick, 'ImgurBot', 0, $conf->nick);
|
||||||
$irc->join(array('#test'));
|
$irc->join(array($conf->channel));
|
||||||
$irc->listen();
|
$irc->listen();
|
||||||
$irc->disconnect();
|
$irc->disconnect();
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"port": 6667,
|
"port": 6667,
|
||||||
"target": "TestUser",
|
"target": "TestUser",
|
||||||
"host": "TargetPartialHostMatch",
|
"host": "TargetPartialHostMatch",
|
||||||
|
"channel": "#cs",
|
||||||
"timing": 100,
|
"timing": 100,
|
||||||
"ssl": true,
|
"ssl": true,
|
||||||
"debug": false
|
"debug": false
|
||||||
|
|
Loading…
Reference in a new issue