| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # Settings file for QuoteEngine
- #
- # Edit this file and save it as QuoteEngine-settings.tcl in
- # your eggdrop's scripts/ directory
- # The mysql hostname to connect to
- set quote_db(host) "127.0.0.1"
- # The mysql account to connect as
- set quote_db(user) "<botnick>"
- set quote_db(password) "<botpwhere>"
- # The name of the database to use
- set quote_db(database) "quotesdb"
- # The URL of the webpage
- # If you're not using it, set this to ""
- set quote_webpage "http://servername/~bot/quotes/"
- # 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
|