shithead-ng/config.default.yml

39 lines
717 B
YAML
Raw Permalink Normal View History

2016-07-04 19:41:12 +02:00
#
# General settings
#
command_character: "."
2020-05-21 02:01:34 +02:00
insult: ""
insult_chance: 0 # % chance that the bot will use the insult
2016-07-19 16:44:11 +02:00
# can be 0 to disable insults
2016-09-03 13:10:43 +02:00
target_words: 4 # lowest number of words in an 'ideal' response
2020-05-21 02:01:34 +02:00
respond_on_highlight: true
2016-07-04 19:41:12 +02:00
2016-04-30 23:53:26 +02:00
#
# Redis Settings
#
redis_prefix: markov
2016-07-06 15:56:00 +02:00
redis_server: 127.0.0.1:6379
redis_usepass: false
redis_password: hunter2
2016-04-30 23:53:26 +02:00
#
# IRC Settings
#
2016-07-04 20:40:33 +02:00
irc_ssl: true
2016-04-30 23:53:26 +02:00
irc_server: irc.foo.bar
2016-07-04 20:40:33 +02:00
irc_port: 6697
2016-04-30 23:53:26 +02:00
irc_nickname: shithead-ng
irc_nickname2: shithead
2016-09-04 12:31:33 +02:00
irc_channels:
- "#foo"
- "#bar"
- "#baz"
2016-09-05 13:35:44 +02:00
# irc_password: hunter2
2016-07-19 15:14:11 +02:00
#
# RNG to use
# This can be "rand" for perl's built in rand() function
# Or "mt" to use the Math::Random::MT::Perl module (recommended)
#
rng: rand