# 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) "localhost" # The mysql account to connect as set quote_db(user) "bot" set quote_db(password) "verysecret" # The name of the database to use set quote_db(database) "quotes" # 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