123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # vIRCBot, a simple IRC bot
- #
- # Copyright (C) 2022 Ferass EL HAFIDI <vitali64pmemail@protonmail.com>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as
- # published by the Free Software Foundation, either version 3 of the
- # License, or (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
- # Owner (nick, [cloak])
- owner = [ "vitali64", "user/vitali64" ]
- # Channels to join
- channels = [ '##chaos' ]
- # Bot nick
- nick = 'speechbot'
- # IRC Server and port
- server = 'irc.libera.chat'
- serverport = 6697
- # NickServ account
- nickserv = None
- # Some other configuration options
- introduction = "##chaos is chaotic!"
- sourcecodeurl = "https://notabug.org/vitali64/vIRCBot"
- welcome_user = 'on'
- cmd_join = 'on'
- cmd_echo = 'on'
- cmd_chanecho = 'on'
- cmd_part = 'on'
- chan_management = 'on'
- cmd_quackecho = 'on'
- cmd_tell = 'on'
|