├── .gitignore ├── GuardChan ├── README.md └── guardchan.tcl ├── HostClean ├── README.md ├── hostclean.tcl └── parse.py ├── ProxyCheck ├── README.md └── proxycheck.tcl ├── QuoteEngine ├── QuoteEngine-settings.sample.tcl ├── QuoteEngine.tcl ├── README.md ├── sql │ └── quotes.sql └── www │ ├── index.php │ ├── ocean.css │ ├── settings.example.inc │ └── styles.css ├── README.md ├── TopicEngine ├── README.md ├── TopicEngine.tcl └── TopicEngineSettings.tcl ├── TriviaEngine ├── README.md ├── TriviaEngine-sqlite.tcl ├── TriviaEngine.tcl └── schema.sql └── noIPhost ├── README.md └── noiphost.tcl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | HostClean/cache.txt 3 | -------------------------------------------------------------------------------- /GuardChan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/GuardChan/README.md -------------------------------------------------------------------------------- /GuardChan/guardchan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/GuardChan/guardchan.tcl -------------------------------------------------------------------------------- /HostClean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/HostClean/README.md -------------------------------------------------------------------------------- /HostClean/hostclean.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/HostClean/hostclean.tcl -------------------------------------------------------------------------------- /HostClean/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/HostClean/parse.py -------------------------------------------------------------------------------- /ProxyCheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/ProxyCheck/README.md -------------------------------------------------------------------------------- /ProxyCheck/proxycheck.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/ProxyCheck/proxycheck.tcl -------------------------------------------------------------------------------- /QuoteEngine/QuoteEngine-settings.sample.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/QuoteEngine-settings.sample.tcl -------------------------------------------------------------------------------- /QuoteEngine/QuoteEngine.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/QuoteEngine.tcl -------------------------------------------------------------------------------- /QuoteEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/README.md -------------------------------------------------------------------------------- /QuoteEngine/sql/quotes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/sql/quotes.sql -------------------------------------------------------------------------------- /QuoteEngine/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/www/index.php -------------------------------------------------------------------------------- /QuoteEngine/www/ocean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/www/ocean.css -------------------------------------------------------------------------------- /QuoteEngine/www/settings.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/www/settings.example.inc -------------------------------------------------------------------------------- /QuoteEngine/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/QuoteEngine/www/styles.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/README.md -------------------------------------------------------------------------------- /TopicEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TopicEngine/README.md -------------------------------------------------------------------------------- /TopicEngine/TopicEngine.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TopicEngine/TopicEngine.tcl -------------------------------------------------------------------------------- /TopicEngine/TopicEngineSettings.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TopicEngine/TopicEngineSettings.tcl -------------------------------------------------------------------------------- /TriviaEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TriviaEngine/README.md -------------------------------------------------------------------------------- /TriviaEngine/TriviaEngine-sqlite.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TriviaEngine/TriviaEngine-sqlite.tcl -------------------------------------------------------------------------------- /TriviaEngine/TriviaEngine.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TriviaEngine/TriviaEngine.tcl -------------------------------------------------------------------------------- /TriviaEngine/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/TriviaEngine/schema.sql -------------------------------------------------------------------------------- /noIPhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/noIPhost/README.md -------------------------------------------------------------------------------- /noIPhost/noiphost.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesoff/eggdrop-scripts/HEAD/noIPhost/noiphost.tcl --------------------------------------------------------------------------------