QuoteEngine-settings.sample.tcl 883 B

1234567891011121314151617181920212223242526272829
  1. # Settings file for QuoteEngine
  2. #
  3. # Edit this file and save it as QuoteEngine-settings.tcl in
  4. # your eggdrop's scripts/ directory
  5. # The filename to store quotes in
  6. # Note: relative to the working dir of your bot (probably the eggdrop/
  7. # directory)
  8. set quote_db_file "quotes.db"
  9. # automatically spew "relevant" quotes?
  10. # Done by looking for quotes containing a word someone said in the channel
  11. # 1 to enable, 0 to disable
  12. set quote_automatic 1
  13. # minimum number of seconds between automatic quotes
  14. # default is 10800 (3 hours)
  15. set quote_automatic_minimum 10800
  16. # a user with this flag(s) can't use the script at all
  17. set quote_noflags "Q|Q"
  18. # maximum number of quotes to show in channel when searching before switching
  19. # to /msg'ing the user
  20. set quote_chanmax 5
  21. # shrink multiple spaces to single spaces when fetching a quote?
  22. # 0 to disable, 1 to enable
  23. set quote_shrinkspaces 1