Added IRCScraper from nZEDb, must be run manualy.

This commit is contained in:
DariusIII
2014-03-31 12:13:10 +02:00
parent 1e72bacc3b
commit 4a11644df4
18 changed files with 6389 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
// If you are lazy, just change this, or else go and change everything else you need to.
$username = '';
// IRC EFNET server address. Change this only if you have issues.
define('SCRAPE_IRC_EFNET_SERVER', 'irc.Prison.NET');
// Port for the efnet server.
define('SCRAPE_IRC_EFNET_PORT', '6667');
// IRC Corrupt.net address.
define('SCRAPE_IRC_CORRUPT_SERVER', 'irc.corrupt-net.org');
// Port for the corrupt server.
define('SCRAPE_IRC_CORRUPT_PORT', '6667');
// Nick name in the IRC channel.
define('SCRAPE_IRC_EFNET_NICKNAME', "$username");
define('SCRAPE_IRC_CORRUPT_NICKNAME', "$username");
// User name, used to log in to the server (like a ZNC server). Use the same as Nick name if you don't know what this is for.
define('SCRAPE_IRC_EFNET_USERNAME', "$username");
define('SCRAPE_IRC_CORRUPT_USERNAME', "$username");
// Password used to log in to the server (like a ZNC server). Leave false if you don't require a password.
define('SCRAPE_IRC_EFNET_PASSWORD', false);
define('SCRAPE_IRC_CORRUPT_PASSWORD', false);
// "Real name" for IRC server. Use the same as Nick name if you don't know what this is for.
define('SCRAPE_IRC_EFNET_REALNAME', "$username");
define('SCRAPE_IRC_CORRUPT_REALNAME', "$username");