mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
<?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"); |