├── .gitignore ├── .version ├── README.md ├── armour.conf.sample ├── armour.png ├── armour.tcl ├── bot.conf.sample ├── deploy ├── dalnet.ini └── undernet.ini ├── eggdrop.conf.sample ├── help ├── access.help ├── ack.help ├── add.help ├── addchan.help ├── adduser.help ├── and.help ├── ask.help ├── askmode.help ├── asn.help ├── ban.help ├── black.help ├── chanscan.help ├── cmds.help ├── conf.help ├── country.help ├── deluser.help ├── deop.help ├── devoice.help ├── die.help ├── do.help ├── email.help ├── exempt.help ├── idle.help ├── image.help ├── info.help ├── invite.help ├── ipqs.help ├── jump.help ├── kick.help ├── lang.help ├── load.help ├── login.help ├── logout.help ├── mod.help ├── modchan.help ├── mode.help ├── moduser.help ├── newpass.help ├── newuser.help ├── note.help ├── nudge.help ├── op.help ├── push.help ├── queue.help ├── quote.help ├── register.help ├── rehash.help ├── rem.help ├── remchan.help ├── remuser.help ├── restart.help ├── save.help ├── say.help ├── scan.help ├── scanport.help ├── scanports.help ├── scanrbl.help ├── score.help ├── search.help ├── set.help ├── showlog.help ├── sms.help ├── stats.help ├── status.help ├── tell.help ├── topic.help ├── unban.help ├── update.help ├── usearch.help ├── userlist.help ├── verify.help ├── version.help ├── view.help ├── voice.help └── whois.help ├── install.sh ├── packages ├── github.tcl ├── http.tcl └── libdronebl.tcl └── plugins ├── aidle.tcl ├── email.tcl ├── help ├── ack.help ├── email.help ├── push.help ├── quote.help ├── sms.help └── tell.help ├── openai.tcl ├── push.tcl ├── quote.tcl ├── sms ├── incoming.php └── smsbot.tcl ├── tell.tcl └── trakka ├── help └── ack.help ├── trakka-tools.tcl └── trakka.tcl /.gitignore: -------------------------------------------------------------------------------- 1 | .lock 2 | backup/ 3 | emails/ 4 | archive/ -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/.version -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/README.md -------------------------------------------------------------------------------- /armour.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/armour.conf.sample -------------------------------------------------------------------------------- /armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/armour.png -------------------------------------------------------------------------------- /armour.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/armour.tcl -------------------------------------------------------------------------------- /bot.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/bot.conf.sample -------------------------------------------------------------------------------- /deploy/dalnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/deploy/dalnet.ini -------------------------------------------------------------------------------- /deploy/undernet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/deploy/undernet.ini -------------------------------------------------------------------------------- /eggdrop.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/eggdrop.conf.sample -------------------------------------------------------------------------------- /help/access.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/access.help -------------------------------------------------------------------------------- /help/ack.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/ack.help -------------------------------------------------------------------------------- /help/add.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/add.help -------------------------------------------------------------------------------- /help/addchan.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/addchan.help -------------------------------------------------------------------------------- /help/adduser.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/adduser.help -------------------------------------------------------------------------------- /help/and.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/and.help -------------------------------------------------------------------------------- /help/ask.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/ask.help -------------------------------------------------------------------------------- /help/askmode.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/askmode.help -------------------------------------------------------------------------------- /help/asn.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/asn.help -------------------------------------------------------------------------------- /help/ban.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/ban.help -------------------------------------------------------------------------------- /help/black.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/black.help -------------------------------------------------------------------------------- /help/chanscan.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/chanscan.help -------------------------------------------------------------------------------- /help/cmds.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/cmds.help -------------------------------------------------------------------------------- /help/conf.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/conf.help -------------------------------------------------------------------------------- /help/country.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/country.help -------------------------------------------------------------------------------- /help/deluser.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/deluser.help -------------------------------------------------------------------------------- /help/deop.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/deop.help -------------------------------------------------------------------------------- /help/devoice.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/devoice.help -------------------------------------------------------------------------------- /help/die.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/die.help -------------------------------------------------------------------------------- /help/do.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/do.help -------------------------------------------------------------------------------- /help/email.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/email.help -------------------------------------------------------------------------------- /help/exempt.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/exempt.help -------------------------------------------------------------------------------- /help/idle.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/idle.help -------------------------------------------------------------------------------- /help/image.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/image.help -------------------------------------------------------------------------------- /help/info.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/info.help -------------------------------------------------------------------------------- /help/invite.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/invite.help -------------------------------------------------------------------------------- /help/ipqs.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/ipqs.help -------------------------------------------------------------------------------- /help/jump.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/jump.help -------------------------------------------------------------------------------- /help/kick.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/kick.help -------------------------------------------------------------------------------- /help/lang.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/lang.help -------------------------------------------------------------------------------- /help/load.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/load.help -------------------------------------------------------------------------------- /help/login.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/login.help -------------------------------------------------------------------------------- /help/logout.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/logout.help -------------------------------------------------------------------------------- /help/mod.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/mod.help -------------------------------------------------------------------------------- /help/modchan.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/modchan.help -------------------------------------------------------------------------------- /help/mode.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/mode.help -------------------------------------------------------------------------------- /help/moduser.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/moduser.help -------------------------------------------------------------------------------- /help/newpass.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/newpass.help -------------------------------------------------------------------------------- /help/newuser.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/newuser.help -------------------------------------------------------------------------------- /help/note.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/note.help -------------------------------------------------------------------------------- /help/nudge.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/nudge.help -------------------------------------------------------------------------------- /help/op.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/op.help -------------------------------------------------------------------------------- /help/push.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/push.help -------------------------------------------------------------------------------- /help/queue.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/queue.help -------------------------------------------------------------------------------- /help/quote.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/quote.help -------------------------------------------------------------------------------- /help/register.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/register.help -------------------------------------------------------------------------------- /help/rehash.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/rehash.help -------------------------------------------------------------------------------- /help/rem.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/rem.help -------------------------------------------------------------------------------- /help/remchan.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/remchan.help -------------------------------------------------------------------------------- /help/remuser.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/remuser.help -------------------------------------------------------------------------------- /help/restart.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/restart.help -------------------------------------------------------------------------------- /help/save.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/save.help -------------------------------------------------------------------------------- /help/say.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/say.help -------------------------------------------------------------------------------- /help/scan.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/scan.help -------------------------------------------------------------------------------- /help/scanport.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/scanport.help -------------------------------------------------------------------------------- /help/scanports.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/scanports.help -------------------------------------------------------------------------------- /help/scanrbl.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/scanrbl.help -------------------------------------------------------------------------------- /help/score.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/score.help -------------------------------------------------------------------------------- /help/search.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/search.help -------------------------------------------------------------------------------- /help/set.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/set.help -------------------------------------------------------------------------------- /help/showlog.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/showlog.help -------------------------------------------------------------------------------- /help/sms.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/sms.help -------------------------------------------------------------------------------- /help/stats.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/stats.help -------------------------------------------------------------------------------- /help/status.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/status.help -------------------------------------------------------------------------------- /help/tell.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/tell.help -------------------------------------------------------------------------------- /help/topic.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/topic.help -------------------------------------------------------------------------------- /help/unban.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/unban.help -------------------------------------------------------------------------------- /help/update.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/update.help -------------------------------------------------------------------------------- /help/usearch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/usearch.help -------------------------------------------------------------------------------- /help/userlist.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/userlist.help -------------------------------------------------------------------------------- /help/verify.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/verify.help -------------------------------------------------------------------------------- /help/version.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/version.help -------------------------------------------------------------------------------- /help/view.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/view.help -------------------------------------------------------------------------------- /help/voice.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/voice.help -------------------------------------------------------------------------------- /help/whois.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/help/whois.help -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/install.sh -------------------------------------------------------------------------------- /packages/github.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/packages/github.tcl -------------------------------------------------------------------------------- /packages/http.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/packages/http.tcl -------------------------------------------------------------------------------- /packages/libdronebl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/packages/libdronebl.tcl -------------------------------------------------------------------------------- /plugins/aidle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/aidle.tcl -------------------------------------------------------------------------------- /plugins/email.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/email.tcl -------------------------------------------------------------------------------- /plugins/help/ack.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/ack.help -------------------------------------------------------------------------------- /plugins/help/email.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/email.help -------------------------------------------------------------------------------- /plugins/help/push.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/push.help -------------------------------------------------------------------------------- /plugins/help/quote.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/quote.help -------------------------------------------------------------------------------- /plugins/help/sms.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/sms.help -------------------------------------------------------------------------------- /plugins/help/tell.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/help/tell.help -------------------------------------------------------------------------------- /plugins/openai.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/openai.tcl -------------------------------------------------------------------------------- /plugins/push.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/push.tcl -------------------------------------------------------------------------------- /plugins/quote.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/quote.tcl -------------------------------------------------------------------------------- /plugins/sms/incoming.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/sms/incoming.php -------------------------------------------------------------------------------- /plugins/sms/smsbot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/sms/smsbot.tcl -------------------------------------------------------------------------------- /plugins/tell.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/tell.tcl -------------------------------------------------------------------------------- /plugins/trakka/help/ack.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/trakka/help/ack.help -------------------------------------------------------------------------------- /plugins/trakka/trakka-tools.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/trakka/trakka-tools.tcl -------------------------------------------------------------------------------- /plugins/trakka/trakka.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/empus/armour/HEAD/plugins/trakka/trakka.tcl --------------------------------------------------------------------------------