Advertisement
Guest User

Untitled

a guest
Apr 12th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. [bot]
  2. nick = otto
  3. username = otto
  4.  
  5. host = irc.euirc.net
  6. port = 6667
  7.  
  8. # uncomment this if you want ssl support
  9. # ssl = true
  10. # uncomment this if you don't want to check the certificate
  11. # ssl_verify = CERT_NONE
  12.  
  13. # uncomment this if you want to use sasl authentication
  14. # sasl_username = mybot
  15. # sasl_password = yourpassword
  16.  
  17. includes =
  18. irc3.plugins.command
  19. # irc3.plugins.uptime
  20. # irc3.plugins.ctcp
  21. mybot_plugin
  22.  
  23. # the bot will join #mybot_channel
  24. # ${#} is replaced by the # char
  25. autojoins =
  26. ${#}fArrueckt
  27.  
  28. # Autojoin delay, disabled by default
  29. # float or int value
  30. # autojoin_delay = 3.1
  31.  
  32. # The maximum amount of lines irc3 sends at once.
  33. # Default to 4, set to 0 to disable
  34. # flood_burst = 10
  35.  
  36. # The number of lines per $flood_rate_delay seconds irc3 sends after reaching
  37. # the $flood_burst limit.
  38. # Default to 1
  39. # flood_rate = 2
  40.  
  41. # The bot will send $flood_rate messages per $flood_rate_delay seconds
  42. # Default to 1
  43. # flood_rate_delay = 5
  44.  
  45. [irc3.plugins.command]
  46. # command plugin configuration
  47.  
  48. # set command char
  49. cmd = !
  50.  
  51. # set guard policy
  52. guard = irc3.plugins.command.mask_based_policy
  53.  
  54. [irc3.plugins.command.masks]
  55. # this section is used by the guard to secure the bot's command
  56. # change your nickname and uncomment the line below
  57. # gawel!*@* = all_permissions
  58. * = view
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement