Browse Source

Update QuoteEngine sample config for SQLite

James Seward 6 years ago
parent
commit
36954b3784
1 changed files with 16 additions and 0 deletions
  1. 16 0
      QuoteEngine/QuoteEngine-settings.sample.tcl

+ 16 - 0
QuoteEngine/QuoteEngine-settings.sample.tcl

@@ -3,6 +3,9 @@
 # Edit this file and save it as QuoteEngine-settings.tcl in
 # your eggdrop's scripts/ directory
 
+
+#### MYSQL ONLY SETTINGS
+
 # The mysql hostname to connect to
 set quote_db(host) "127.0.0.1"
 
@@ -17,6 +20,19 @@ set quote_db(database) "quotesdb"
 # If you're not using it, set this to ""
 set quote_webpage "http://servername/~bot/quotes/"
 
+#### END MYSQL ONLY SETTINGS
+
+
+#### SQLITE ONLY SETTINGS
+
+# 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"
+
+#### END SQLITE ONLY SETTINGS
+
+
 # automatically spew "relevant" quotes?
 # Done by looking for quotes containing a word someone said in the channel
 # 1 to enable, 0 to disable