wildphp / module-ircconnection
IRC connection provider for WildPHP
Requires
This package is not auto-updated.
Last update: 2017-08-27 17:13:21 UTC
README
This module provides the connection with IRC networks for the framework.
System Requirements
If your setup can run the main bot, it can run this module as well. You might need to un-block the ports used for connecting to the server (most likely 6667).
Installation
To install this module, we will use composer
:
composer require wildphp/module-ircconnection
That will install all required files for the module. In order to activate the module, add the following line to your main.modules
file:
WildPHP\CoreModules\Connection\Connection
The bot will run the module the next time it is started.
Configuration
Add and adjust the following lines in your config.neon
file (if not already there):
# The server to connect to. Do not append port numbers.
server: irc.freenode.org
# The port number to use.
port: 6667
# Use a secure (SSL) connection?
secure: false
# The nickname to use when connecting.
# Every character allowed, except spaces, newlines and the at (@) symbol.
nick: WildPHP-Bot
# The ident to use for the bot.
name: WildPHP-Bot
License
This module is licensed under the GNU General Public License, version 3. Please see LICENSE
to read it.