summaryrefslogtreecommitdiffstats
path: root/tld.tcl
diff options
context:
space:
mode:
authorlookshe <lookshe@fumuga.com>2012-11-02 15:14:13 +0100
committerlookshe <lookshe@fumuga.com>2012-11-02 15:14:13 +0100
commitb4acc69e49d027c476bae4be3e50fcde1904ce51 (patch)
treef767467b0f6c143cf79d85a1937b232351f7ca54 /tld.tcl
parent3cb7dabc47c4b2faea44dfd7a4f1957f294cb999 (diff)
new tld scripts ask wikipedia table
Diffstat (limited to 'tld.tcl')
-rw-r--r--tld.tcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/tld.tcl b/tld.tcl
new file mode 100644
index 0000000..5cd7606
--- /dev/null
+++ b/tld.tcl
@@ -0,0 +1,15 @@
+bind pub - !tld proc_file
+
+proc proc_file {nick host hand chan arg} {
+ set arg [string trim $arg]
+ if {$arg == ""} {
+ return 0
+ }
+
+ set output [split "[exec perl /home/eggdrop/eggdrop/scripts/tld.pl $arg]" "\n"]
+ foreach out $output {
+ putserv "PRIVMSG $chan :$out"
+ }
+}
+
+putlog "filetype by lookshe loaded"