bot_config.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # vIRCBot, a simple IRC bot
  2. #
  3. # Copyright (C) 2022 Ferass EL HAFIDI <vitali64pmemail@protonmail.com>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as
  7. # published by the Free Software Foundation, either version 3 of the
  8. # License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. # Owner (nick, [cloak])
  18. owner = [ "vitali64", "user/vitali64" ]
  19. # Channels to join
  20. channels = [ '##chaos' ]
  21. # Bot nick
  22. nick = 'speechbot'
  23. # IRC Server and port
  24. server = 'irc.libera.chat'
  25. serverport = 6697
  26. # NickServ account
  27. nickserv = None
  28. # Some other configuration options
  29. introduction = "##chaos is chaotic!"
  30. sourcecodeurl = "https://notabug.org/vitali64/vIRCBot"
  31. welcome_user = 'on'
  32. cmd_join = 'on'
  33. cmd_echo = 'on'
  34. cmd_chanecho = 'on'
  35. cmd_part = 'on'
  36. chan_management = 'on'
  37. cmd_quackecho = 'on'
  38. cmd_tell = 'on'