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