QuoteEngine-settings.sample.tcl 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 mysql hostname to connect to
  6. set quote_db(host) "127.0.0.1"
  7. # The mysql account to connect as
  8. set quote_db(user) "<botnick>"
  9. set quote_db(password) "<botpwhere>"
  10. # The name of the database to use
  11. set quote_db(database) "quotesdb"
  12. # The URL of the webpage
  13. # If you're not using it, set this to ""
  14. set quote_webpage "http://servername/~bot/quotes/"
  15. # automatically spew "relevant" quotes?
  16. # Done by looking for quotes containing a word someone said in the channel
  17. # 1 to enable, 0 to disable
  18. set quote_automatic 1
  19. # minimum number of seconds between automatic quotes
  20. # default is 10800 (3 hours)
  21. set quote_automatic_minimum 10800
  22. # a user with this flag(s) can't use the script at all
  23. set quote_noflags "Q|Q"
  24. # maximum number of quotes to show in channel when searching before switching
  25. # to /msg'ing the user
  26. set quote_chanmax 5
  27. # shrink multiple spaces to single spaces when fetching a quote?
  28. # 0 to disable, 1 to enable
  29. set quote_shrinkspaces 1