Setup Configuration

The ChannelIRC module adds CraftIRC endpoints for ChannelChat channels.

These end points get their tags set with the channel name (in lower case) prepended with "cc-" (For example, the channel "General" would be "cc-general").

Config sections

  • message-format: message-format: '[irc] %1$s: %2$s'
    • Controls the format of messages from IRC -> channel-chat channel
    • Want to include the IRC channel? Change "[irc]" to "[%3$s]"
  • channels: []
    • A list of channels to create endpoints for.

Adding channel endpoints

The following examples adds the channels "General" and "World," the tags being "cc-general" and cc-world respectively.

channels:
  - General
  - World

or

channels: [General, World]

Default /modules/ChannelIRC.yml:

message-format: '[irc] %1$s: %2$s'
channels: []