<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/17078" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2025-06-24T02:08:30-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/17078</id>

		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2025-06-24T02:07:43-04:00</updated>

		<published>2025-06-24T02:07:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113329#p113329</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113329#p113329"/>
		<title type="html"><![CDATA[Re: troll.tcl Version 2.8 (Apr.28.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113329#p113329"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>############################################################################################################## Troll v2.8 TCL by spithash@Libera                                                                         ############################################################################################################### Gets troll quotes and makes people suffer!                                                                ############################################################################################################### Version 2.5   (19.11.2021)                                                                                ##                                                                                                           ## Changed url because the old one was dead and enabled tls.                                                 ## tcl-tls is required to be installed on your server.                                                       ############################################################################################################### Version 2.1   (20.03.2012)                                                                                ##                                                                                                           ## Added flood protection. More like, throttle control. Special thanks to username.                          ##                                                                                                           ## Any official release of troll.tcl will be announced in http://forum.egghelp.org/viewtopic.php?t=17078     ## Official troll.tcl updates will be in this repo https://github.com/spithash/troll.tcl                     ############################################################################################################### Version 2.0                                                                                               ##                                                                                                           ## Version 2.0 is way different since there's no database in the file. It fetches the quotes by a website.   ## Also, you can ".chanset #channel +troll" to enable it.                                                    ## I added this just in case you don't want your trolls to be available globally.                            ##                                                                                                           ## (Keep it to "puthelp" cause I didn't add any flood protection yet,                                        ## and it may cause your bot "Excess Flood" quit if it's in "putserv" or "putquick",                         ## if someone floods the !troll trigger or if the troll quote is too long.)                                  ############################################################################################################### Credits: special thanks to: username, speechles and arfer who helped me with this :)                      ##############################################################################################################package require httppackage require tls# Channel flag for enabling the featuresetudef flag troll# Set the time (in seconds) between usesset delay 10# Configure HTTP to support HTTPShttp::register https 443 [list ::tls::socket -autoservername true]::http::config -urlencoding utf-8 -useragent "Mozilla/5.0 (X11; U; Linux i686; el-GR; rv:1.8.1) Gecko/2010112223 Firefox/3.6.12"# Bind the !troll commandbind pub - !troll parseproc parse {nick uhost hand chan text} {    global delay    variable troll    if {![channel get $chan troll]} {        return 0    }    if {[info exists troll(lasttime,$chan)] &amp;&amp; ([clock seconds] - $troll(lasttime,$chan)) &lt; $delay} {        set wait [expr {$delay - ([clock seconds] - $troll(lasttime,$chan))}]        putserv "NOTICE $nick :You can use only 1 command every $delay seconds. Wait $wait more second(s)."        return 0    }    set url "http://meoww.getenjoyment.net/nou.php"    # Fetch URL    set token [::http::geturl $url -timeout 15000]    if {[::http::status $token] ne "ok"} {        putserv "NOTICE $nick :Error fetching data. HTTP status: [::http::status $token]"        ::http::cleanup $token        return 0    }    set data [::http::data $token]    ::http::cleanup $token    # Collapse all whitespace (spaces, tabs, newlines) into single spaces    regsub -all -- {\s+} $data " " data    set data [string trim $data]    # Extract content inside &lt;p&gt;...&lt;/p&gt;    if {[regexp -nocase -- {&lt;p .*?&gt;(.*?)&lt;/p&gt;} $data -&gt; info]} {        set info [string trim $info]        # Replace &lt;strong&gt; and &lt;b&gt; tags with bold control code (\002)        regsub -all -- {(&lt;strong[^&gt;]*&gt;|&lt;b[^&gt;]*&gt;)} $info "\002" info        regsub -all -- {&lt;/strong&gt;|&lt;/b&gt;} $info "\002" info        # Strip any other remaining HTML tags        regsub -all -- {&lt;[^&gt;]+&gt;} $info "" info        set info [string trim $info]        # Send output in chunks of 420 characters        while {[string length $info] &gt; 0} {            putserv "PRIVMSG $chan :[string range $info 0 419]"            set info [string range $info 420 end]        }        # Update lasttime        set troll(lasttime,$chan) [clock seconds]    } else {        putserv "NOTICE $nick :Error: No matching data found."        putlog "DEBUG: Data fetched: $data"    }}putlog "\002troll.tcl\002 v2.8 by spithash@Libera is up and trollin'!"# EOF</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Tue Jun 24, 2025 2:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2025-04-28T06:42:30-04:00</updated>

		<published>2025-04-28T06:42:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113298#p113298</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113298#p113298"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Apr.28.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113298#p113298"><![CDATA[
New release of the troll.tcl guys!<br><ul><li>Changed the url of the database and removed an extra space from the bot's reply.</li></ul><ul><li>Also we're handling /n newlines better (it was adding extra space there)</li></ul><ul><li>Added better bolding support for <div class="codebox"><p>Code: </p><pre><code>&lt;b&gt;</code></pre></div> and <div class="codebox"><p>Code: </p><pre><code>&lt;strong&gt;</code></pre></div></li></ul>as always, it's available <a href="https://raw.githubusercontent.com/spithash/troll.tcl/refs/heads/main/troll.tcl" class="postlink">here</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Mon Apr 28, 2025 6:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2024-10-15T07:46:34-04:00</updated>

		<published>2024-10-15T07:46:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113079#p113079</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113079#p113079"/>
		<title type="html"><![CDATA[Re: troll.tcl Version 2.5.1 (Oct.15.2024)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113079#p113079"><![CDATA[
New release:<br><a href="https://github.com/spithash/troll.tcl/releases/tag/2.5.1" class="postlink">https://github.com/spithash/troll.tcl/r ... /tag/2.5.1</a><br><br>The url of the database has changed<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Tue Oct 15, 2024 7:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2022-05-05T05:32:31-04:00</updated>

		<published>2022-05-05T05:32:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=111093#p111093</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=111093#p111093"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Jun.24.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=111093#p111093"><![CDATA[
I've updated the script. <br><a href="https://github.com/spithash/troll.tcl" class="postlink">https://github.com/spithash/troll.tcl</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Thu May 05, 2022 5:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2021-11-19T08:43:15-04:00</updated>

		<published>2021-11-19T08:43:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110492#p110492</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110492#p110492"/>
		<title type="html"><![CDATA[troll.tcl 2.5]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110492#p110492"><![CDATA[
I've updated the script. <br><br>I changed the url and enabled tls, you are now required to install tcl-tls on your server.<br><br>The script used to bold certain words on its output, I will try to find some time in the next days to fix that as well, but this fix won't have any effect on the script itself, just the output on the php end.<br><br>Anyways, you can get it from: <a href="https://github.com/spithash/troll.tcl" class="postlink">https://github.com/spithash/troll.tcl</a><br><br>Enjoy <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Fri Nov 19, 2021 8:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2020-09-10T09:15:31-04:00</updated>

		<published>2020-09-10T09:15:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108971#p108971</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108971#p108971"/>
		<title type="html"><![CDATA[troll.tcl on GitHub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108971#p108971"><![CDATA[
updates and whatnot for troll.tcl on github<br><br><a href="https://github.com/spithash/troll.tcl" class="postlink">https://github.com/spithash/troll.tcl</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Thu Sep 10, 2020 9:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dominatez]]></name></author>
		<updated>2019-08-15T09:02:30-04:00</updated>

		<published>2019-08-15T09:02:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=107750#p107750</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=107750#p107750"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Jun.24.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=107750#p107750"><![CDATA[
This is showing the following error now.<br><br>Tcl error [parse]: data error<br><br>Would be good if it was working.<br><br><div class="codebox"><p>Code: </p><pre><code>############################################################################################################## Troll v2.1 TCL by spithash@DALnet                                                                         ############################################################################################################### Gets troll quotes and makes people suffer!                                                                ###############################################################################################################                  ## Version 2.1(20.03.2012)      ##                  ## Added flood protection. More like, throttle control. Special thanks to username.        ##                                                                                                           ## Any official release of troll.tcl will be announced in http://forum.egghelp.org/viewtopic.php?t=17078     ## Official troll.tcl updates will be in egghelp.org's TCL archive,                                          ## Or here: http://bsdunix.info/spithash/troll/troll.tcl                                                     ############################################################################################################### Version 2.0            ##                  ## Version 2.0 is way different since there's no database in the file. It fetches the quotes by a website.   ## Also, you can ".chanset #channel +troll" to enable it.                                                    ## I added this just in case you don't want your trolls to be available globally.                            ##                  ## (Keep it to "puthelp" cause I didn't add any flood protection yet,                                        ## and it may cause your bot "Excess Flood" quit if it's in "putserv" or "putquick",                         ## if someone floods the !troll trigger or if the troll quote is too long.)                                  ############################################################################################################### Credits: special thanks to: username, speechles and arfer who helped me with this :)                      ############################################################################################################### Channel flag.setudef flag troll# Set the time (in seconds) between commands.set delay 10bind pub - !troll parseproc parse {nick uhost hand chan text} {global delayvariable trollif {![channel get $chan troll]} {    return 0}if {[info exists troll(lasttime,$chan)] &amp;&amp; [expr $troll(lasttime,$chan) + $delay] &gt; [clock seconds]} {    putserv "NOTICE $nick :You can use only 1 command in $delay seconds. Wait [expr $delay - [expr [clock seconds] - $troll(lasttime,$chan)]] seconds and try again, nigga."    return 0}::http::config -urlencoding utf-8 -useragent "Mozilla/5.0 (X11; U; Linux i686; el-GR; rv:1.8.1) Gecko/2010112223 Firefox/3.6.12"set url [::http::geturl "http://rolloffle.churchburning.org/troll_me.php" -timeout 15000]set data [::http::data $url]::http::cleanup $urlregsub -all -- {\n} $data "" data;regexp -nocase -- {&lt;p .*?&gt;(.*?)&lt;/p&gt;} $data -&gt; inforegsub -all -- {(&lt;strong[^&gt;]*&gt;)|(&lt;/strong&gt;)} $info "\002" info;while {$info != ""} {    putserv "PRIVMSG $chan :[string range $info 0 419]"    set info [string range $info 420 end]}set troll(lasttime,$chan) [clock seconds]}putlog "\002troll.tcl\002 v2.1 by spithash@DALnet iz up and trollin'"# EOF </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12783">Dominatez</a> — Thu Aug 15, 2019 9:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2012-03-26T04:33:18-04:00</updated>

		<published>2012-03-26T04:33:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99123#p99123</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99123#p99123"/>
		<title type="html"><![CDATA[troll.tcl version 2.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99123#p99123"><![CDATA[
Brand new version of troll.tcl 2.1 is out! <br>Added flood protection. Well, throttle control. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Fetch it from egghelp's tcl archive:<br><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1618" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... ad&amp;id=1618</a><br><br>Enjoy the lulz!!!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Mon Mar 26, 2012 4:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2012-01-17T08:19:15-04:00</updated>

		<published>2012-01-17T08:19:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98559#p98559</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98559#p98559"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Jun.24.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98559#p98559"><![CDATA[
For any official release of <strong class="text-strong">troll.tcl</strong> you may refer to <strong class="text-strong"><em class="text-italics"><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1618" class="postlink">egghelp.org's</a></em></strong> tcl archive.<br><br>Let me know if you are experiencing any problems with the script, I will appreciate it  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Tue Jan 17, 2012 8:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2010-11-21T01:34:07-04:00</updated>

		<published>2010-11-21T01:34:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=95154#p95154</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=95154#p95154"/>
		<title type="html"><![CDATA[Re: error!!!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=95154#p95154"><![CDATA[
<blockquote class="uncited"><div>[16:22] &lt;(FreeBSD&gt; [16:22:08] Tcl error [parce]: invalid command name "::http::config"</div></blockquote>you need http.tcl loaded first<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Sun Nov 21, 2010 1:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Lucifer]]></name></author>
		<updated>2010-11-20T20:29:10-04:00</updated>

		<published>2010-11-20T20:29:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=95153#p95153</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=95153#p95153"/>
		<title type="html"><![CDATA[error!!!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=95153#p95153"><![CDATA[
[16:22] &lt;(FreeBSD&gt; [16:22:08] Tcl error [parce]: invalid command name "::http::config"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8339">Lucifer</a> — Sat Nov 20, 2010 8:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2010-10-25T05:58:29-04:00</updated>

		<published>2010-10-25T05:58:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94855#p94855</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94855#p94855"/>
		<title type="html"><![CDATA[egghelp.org's fetch]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94855#p94855"><![CDATA[
<a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=1618" class="postlink">egghelp.orgs's fetch</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Mon Oct 25, 2010 5:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Pixelz]]></name></author>
		<updated>2010-10-22T02:06:52-04:00</updated>

		<published>2010-10-22T02:06:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94831#p94831</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94831#p94831"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Jun.24.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94831#p94831"><![CDATA[
There's also this: <a href="http://rolloffle.churchburning.org/fortune/trolldb" class="postlink">http://rolloffle.churchburning.org/fortune/trolldb</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6356">Pixelz</a> — Fri Oct 22, 2010 2:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2012-01-17T08:24:50-04:00</updated>

		<published>2010-10-19T14:50:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94809#p94809</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94809#p94809"/>
		<title type="html"><![CDATA[troll.tcl version 2.0]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94809#p94809"><![CDATA[
troll.tcl version 2.0 is out.<br><div class="codebox"><p>Code: </p><pre><code>############################################################################################################## Troll v2.0 TCL by spithash@DALnet                                                                         ##                                                                                                           ## Gets troll quotes and makes people suffer!                                                                ## Version 2.0 is way different since there's no database in the file. It fetches the quotes by a website.   ## Also, you can ".chanset #channel +troll" to enable it.                                                    ## I added this just in case you don't want your trolls to be available globally.                            ############################################################################################################### Any official release of troll.tcl will be announced in http://forum.egghelp.org/viewtopic.php?t=17078     ## Official troll.tcl updates will be in egghelp.org's TCL archive,                                          ## Or here: http://bsdunix.info/eggdrop/scripts/troll.tcl                                                    ## (Keep it to "puthelp" cause I didn't add any flood protection yet,                                        ## and it may cause your bot "Excess Flood" quit if it's in "putserv" or "putquick",                         ## if someone floods the !troll trigger or if the troll quote is too long.)                                  ############################################################################################################### Credits: special thanks to: username, speechles and arfer who helped me with this :)                      ##############################################################################################################setudef flag trollbind pub - !troll parceproc parce {nick uhost hand chan text} {    if {[channel get $chan troll]} {::http::config -urlencoding utf-8 -useragent "Mozilla/5.0 (X11; U; Linux i686; el-GR; rv:1.8.1) Gecko/2010112223 Firefox/3.6.12"set url [::http::geturl "http://rolloffle.churchburning.org/troll_me.php" -timeout 15000]set data [::http::data $url]::http::cleanup $urlregsub -all -- {\n} $data "" data;regexp -nocase -- {&lt;p .*?&gt;(.*?)&lt;/p&gt;} $data -&gt; inforegsub -all -- {(&lt;strong[^&gt;]*&gt;)|(&lt;/strong&gt;)} $info "\002" info;while { $info != "" } {    puthelp "PRIVMSG $chan :[string range $info 0 419]"    set info [string range $info 420 end]    }  }}putlog "\002troll.tcl\002 v2.0 by spithash@DALnet iz up and trollin'"# EOF</code></pre></div>I really thank you guys for helping me out <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Tue Oct 19, 2010 2:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2025-06-24T02:08:30-04:00</updated>

		<published>2009-08-10T19:25:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89829#p89829</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89829#p89829"/>
		<title type="html"><![CDATA[troll.tcl Version 2.8 (Jun.24.2025)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89829#p89829"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># Displays random troll quotes in the channel using a simple !troll trigger and makes people suffer## Official troll.tcl and updated version, at http://bsdunix.info/eggdrop/scripts/troll.tcl# # troll TCL for eggdrop by spithash@DALnet #Codemasters## version 1.0#</code></pre></div>github url: <a href="https://github.com/spithash/troll.tcl" class="postlink">https://github.com/spithash/troll.tcl</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Mon Aug 10, 2009 7:25 pm</p><hr />
]]></content>
	</entry>
	</feed>
