mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 10:48:53 +00:00
Added IRCScraper from nZEDb, must be run manualy.
This commit is contained in:
@@ -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");
|
||||
Reference in New Issue
Block a user