<?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/17021" />

	<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>2011-11-18T19:11:44-04:00</updated>

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

		<entry>
		<author><name><![CDATA[FightingNavyman]]></name></author>
		<updated>2011-11-18T19:11:44-04:00</updated>

		<published>2011-11-18T19:11:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98231#p98231</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98231#p98231"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98231#p98231"><![CDATA[
thanks man this works flawlessly  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11503">FightingNavyman</a> — Fri Nov 18, 2011 7:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2011-11-12T00:32:52-04:00</updated>

		<published>2011-11-12T00:32:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98200#p98200</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98200#p98200"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98200#p98200"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># config starts# which method should be used when shortening the url?# (0-2) will only use the one you've chosen.# (3-4) will use them all.# 0 --&gt; http://tinyurl.com# 1 --&gt; http://is.gd# 2 --&gt; http://cli.gs# 3 --&gt; randomly select one of the three above ( 2,0,0,2,1..etc )# 4 --&gt; cycle through the three above ( 0,1,2,1,0,1..etc )# ---variable lmgtfyShortType 4# seconds people must wait before reusing the command.variable lmgtfySeconds 30# script startspackage require httpsetudef flag lmgtfybind pub - !lmgtfy pub:lmgtfyproc pub:lmgtfy {nick uhost hand chan text} {  if {[channel get $chan lmgtfy]} {    if {[set throttle [lmgtfy:throttled $uhost,$chan $::lmgtfySeconds]] &gt; 0} {      putserv "notice $nick :Throttled.. My head is spinning. Please wait $throttle seconds."      return    }    if {[llength [set text [split $text]]] &lt; 2} {      putserv "privmsg $chan :!lmgtfy &lt;nick&gt; &lt;search terms here&gt;"      return    } elseif {![onchan [lindex $text 0] $chan]} {      putserv "privmsg $chan :[lindex $text 0] isn't on this channel. If you're trying to be funny, consider this a failure to impress me with your wit."      return    } else {      putserv "privmsg $chan :[lindex $text 0] -&gt; [webbytin "http://lmgtfy.com/?[http::formatQuery q [join [lrange $text 1 end]]]" $::lmgtfyShortType]"    }  }}proc webbytin {url type} {   set ua "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5"   set http [::http::config -useragent $ua]   switch -- $type {     3 { set type [rand 3] }     4 { if {![info exists ::webbyCount]} {           set ::webbyCount 0           set type 0         } else {           set type [expr {[incr ::webbyCount] % 3}]         }       }   }   switch -- $type {     0 { set query "http://tinyurl.com/api-create.php?[http::formatQuery url $url]" }     1 { set query "http://is.gd/api.php?[http::formatQuery longurl $url]" }     2 { set query "http://cli.gs/api/v1/cligs/create?[http::formatQuery url $url]&amp;title=&amp;key=&amp;appid=webby" }   }   set token [http::geturl $query -timeout 3000]   upvar #0 $token state   if {[string length $state(body)]} { return [string map {"\n" ""} $state(body)] }   return $url}# Throttle Proc - Thanks to user# see this post: http://forum.egghelp.org/viewtopic.php?t=9009&amp;start=3proc lmgtfy:throttled {id seconds} {   global lmgtfythrottle   if {[info exists lmgtfythrottle($id)]&amp;&amp;[set val [expr {$lmgtfythrottle($id) - [clock seconds]}]] &gt; 0} {      set id $val   } {      set lmgtfythrottle($id) [expr {[clock seconds]+$seconds}]      set id 0   }}# delete expired entries every 10 minutesbind time - ?0* lmgtfy:throttledCleanupproc lmgtfy:throttledCleanup args {   global lmgtfythrottle   set now [clock seconds]   foreach {id time} [array get lmgtfythrottle] {      if {$time&lt;=$now} {unset lmgtfythrottle($id)}   }}</code></pre></div>Enjoy^ 2 <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sat Nov 12, 2011 12:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[FightingNavyman]]></name></author>
		<updated>2011-11-12T00:22:20-04:00</updated>

		<published>2011-11-12T00:22:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98199#p98199</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98199#p98199"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98199#p98199"><![CDATA[
I try the one where you end the post with "enjoy <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"> "<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11503">FightingNavyman</a> — Sat Nov 12, 2011 12:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2011-11-12T00:19:38-04:00</updated>

		<published>2011-11-12T00:19:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98197#p98197</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98197#p98197"/>
		<title type="html"><![CDATA[Re: lmgtfy]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98197#p98197"><![CDATA[
<blockquote class="uncited"><div>ok i copy pasted the script to a new .tcl fle then load it and go to party line and do: .chanset #chan +lmgtfy then i get this error<br><div class="codebox"><p>Code: </p><pre><code>Tcl error [pub:lmgtfy]: can't read "uhand": no such variable</code></pre></div></div></blockquote>Try the edited code above. Sorry 'bout that.. heh<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sat Nov 12, 2011 12:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[FightingNavyman]]></name></author>
		<updated>2011-11-11T23:49:37-04:00</updated>

		<published>2011-11-11T23:49:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98195#p98195</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98195#p98195"/>
		<title type="html"><![CDATA[lmgtfy]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98195#p98195"><![CDATA[
ok i copy pasted the script to a new .tcl fle then load it and go to party line and do: .chanset #chan +lmgtfy then i get this error<br><div class="codebox"><p>Code: </p><pre><code>Tcl error [pub:lmgtfy]: can't read "uhand": no such variable</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11503">FightingNavyman</a> — Fri Nov 11, 2011 11:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2011-11-18T17:52:34-04:00</updated>

		<published>2011-11-10T12:00:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98186#p98186</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98186#p98186"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98186#p98186"><![CDATA[
<strong class="text-strong">speechless</strong><br>Thanx for the code and don't be picky <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"> There're cookies waiting for you in the kitchen <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><p>Statistics: Posted by Guest — Thu Nov 10, 2011 12:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2011-11-02T12:50:00-04:00</updated>

		<published>2011-11-02T12:50:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98098#p98098</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98098#p98098"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98098#p98098"><![CDATA[
While not actually useful to go back and make that change. It does add style points I guess when you read it, knowing that, I felt ashasmed. Check above. +1 for style? Am I right? Do I get a cookie? Anyone? Bueller? Bueller?<br><br>Yeah, okay, having made that change what other tiny details did I forget? Any i's undotted or t's uncrossed? Any grammar or spelling teachers reading this thread?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Wed Nov 02, 2011 12:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2011-11-02T01:39:45-04:00</updated>

		<published>2011-11-02T01:39:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98094#p98094</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98094#p98094"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98094#p98094"><![CDATA[
Why don't you just split $text once and use it from there? Something like<div class="codebox"><p>Code: </p><pre><code>set text [split $text]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Nov 02, 2011 1:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2011-11-12T00:27:12-04:00</updated>

		<published>2011-11-01T20:45:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98093#p98093</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98093#p98093"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98093#p98093"><![CDATA[
<blockquote class="uncited"><div>&lt;frayed&gt; im looking to use a lmgtfy script you wrote a while back and i would like flood timer to go with it</div></blockquote><div class="codebox"><p>Code: </p><pre><code># config starts# which method should be used when shortening the url?# (0-2) will only use the one you've chosen.# (3-4) will use them all.# 0 --&gt; http://tinyurl.com# 1 --&gt; http://is.gd# 2 --&gt; http://cli.gs# 3 --&gt; randomly select one of the three above ( 2,0,0,2,1..etc )# 4 --&gt; cycle through the three above ( 0,1,2,1,0,1..etc )# ---variable lmgtfyShortType 4# seconds people must wait before reusing the command.variable lmgtfySeconds 30# script startspackage require httpsetudef flag lmgtfybind pub - !lmgtfy pub:lmgtfyproc pub:lmgtfy {nick uhost hand chan text} {  if {[channel get $chan lmgtfy]} {    if {[set throttle [lmgtfy:throttled $uhost,$chan $::lmgtfySeconds]] &gt; 0} {      putserv "notice $nick :Throttled.. My head is spinning. Please wait $throttle seconds."      return    }    if {[llength [set text [split $text]]] &lt; 2} {      putserv "privmsg $chan :!lmgtfy &lt;nick&gt; &lt;search terms here&gt;"      return    } elseif {![onchan [lindex $text 0] $chan]} {      putserv "privmsg $chan :[lindex $text 0] isn't on this channel. If you're trying to be funny, consider this a failure to impress me with your wit."      return    } else {      putserv "privmsg $chan :[lindex $text 0] -&gt; [webbytin "http://lmgtfy.com/?[http::formatQuery q [join [lrange $text 1 end]]]" $::lmgtfyShortType]"    }  }}proc webbytin {url type} {   set ua "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5"   set http [::http::config -useragent $ua]   switch -- $type {     3 { set type [rand 3] }     4 { if {![info exists ::webbyCount]} {           set ::webbyCount 0           set type 0         } else {           set type [expr {[incr ::webbyCount] % 3}]         }       }   }   switch -- $type {     0 { set query "http://tinyurl.com/api-create.php?[http::formatQuery url $url]" }     1 { set query "http://is.gd/api.php?[http::formatQuery longurl $url]" }     2 { set query "http://cli.gs/api/v1/cligs/create?[http::formatQuery url $url]&amp;title=&amp;key=&amp;appid=webby" }   }   set token [http::geturl $query -timeout 3000]   upvar #0 $token state   if {[string length $state(body)]} { return [string map {"\n" ""} $state(body)] }   return $url}# Throttle Proc - Thanks to user# see this post: http://forum.egghelp.org/viewtopic.php?t=9009&amp;start=3proc lmgtfy:throttled {id seconds} {global lmgtfythrottleif {[info exists lmgtfythrottle($id)]&amp;&amp;[set val [expr {[clock seconds]-$lmgtfythrottle($id)}]] &gt; 0} {set id $val} {set lmgtfythrottle($id) [expr {[clock seconds]+$seconds}]set id 0}}# delete expired entries every 10 minutesbind time - ?0* lmgtfy:throttledCleanupproc lmgtfy:throttledCleanup args {global lmgtfythrottleset now [clock seconds]foreach {id time} [array get lmgtfythrottle] {if {$time&lt;=$now} {unset lmgtfythrottle($id)}}}</code></pre></div>Enjoy. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Tue Nov 01, 2011 8:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Michiellll]]></name></author>
		<updated>2011-07-29T06:22:06-04:00</updated>

		<published>2011-07-29T06:22:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=97298#p97298</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=97298#p97298"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=97298#p97298"><![CDATA[
Can I somehow have it not use the shortening url part.<br><br>I want it to just spit out the lmgtfy url (apparantly lmgtfy scripts aren't that easy to find)<br><br>---<br>I turned it into this, probably can be done easier I guess, but I just fiddled around a bit with what was in there. Works fine.<br><br>Thanks to Snakes on EFnet/#eggtcl with this bit:<div class="codebox"><p>Code: </p><pre><code>http://lmgtfy.com/?q=[join [lrange $text 1 end] "%20"]"</code></pre></div><div class="codebox"><p>Code: </p><pre><code># script startspackage require httpsetudef flag lmgtfybind pub - !lmgtfy pub:lmgtfyproc pub:lmgtfy {nick uhost hand chan text} {  if {[channel get $chan lmgtfy]} {    if {[llength [split $text]] &lt; 2} {      putserv "privmsg $chan :!lmgtfy &lt;nick&gt; &lt;search terms here&gt;"      return    } elseif {![onchan [lindex [split $text] 0] $chan]} {      putserv "privmsg $chan :[lindex [split $text] 0] isn't on this channel. If your trying to be funny, consider this a failure to impress me with your wit."      return    } else {      putserv "privmsg $chan :[lindex $text 0] -&gt; http://lmgtfy.com/?q=[join [lrange $text 1 end] "%20"]"    }  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11743">Michiellll</a> — Fri Jul 29, 2011 6:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Skid00]]></name></author>
		<updated>2009-07-21T00:41:46-04:00</updated>

		<published>2009-07-21T00:41:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89614#p89614</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89614#p89614"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89614#p89614"><![CDATA[
Many thanks again to speechles...<br><br>Works fine <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=10753">Skid00</a> — Tue Jul 21, 2009 12:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2009-07-14T18:09:42-04:00</updated>

		<published>2009-07-14T18:09:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89541#p89541</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89541#p89541"/>
		<title type="html"><![CDATA[Re: let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89541#p89541"><![CDATA[
Here is a fairly basic adaptation. It lacks several features such as flood protection, checking the url is proper, and other such amenities. This should get you going in the right direction. The webbytin procedure is taken from <a href="http://forum.egghelp.org/viewtopic.php?t=16819" class="postlink">webby</a>. The name of the procedure altered slightly to prevent conflicting with webby in case both are loaded at the same time.<div class="codebox"><p>Code: </p><pre><code># config starts# which method should be used when shortening the url?# (0-3) will only use the one you've chosen.# (4-5) will use them all.# 0 --&gt; http://tinyurl.com# 1 --&gt; http://u.nu# 2 --&gt; http://is.gd# 3 --&gt; http://cli.gs# 4 --&gt; randomly select one of the four above ( 2,0,0,3,1..etc )# 5 --&gt; cycle through the four above ( 0,1,2,3,0,1..etc )# ---variable lmgtfyShortType 5# script startspackage require httpsetudef flag lmgtfybind pub - !lmgtfy pub:lmgtfyproc pub:lmgtfy {nick uhost hand chan text} {  if {[channel get $chan lmgtfy]} {    if {[llength [split $text]] &lt; 2} {      putserv "privmsg $chan :!lmgtfy &lt;nick&gt; &lt;search terms here&gt;"      return    } elseif {![onchan [lindex [split $text] 0] $chan]} {      putserv "privmsg $chan :[lindex [split $text] 0] isn't on this channel. If your trying to be funny, consider this a failure to impress me with your wit."      return    } else {      putserv "privmsg $chan :[lindex [split $text] 0] -&gt; [webbytin "http://lmgtfy.com/?[http::formatQuery q [join [lrange [split $text] 1 end]]]" $::lmgtfyShortType]"    }  }}proc webbytin {url type} {   set ua "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5"   set http [::http::config -useragent $ua]   switch -- $type {     4 { set type [rand 4] }     5 { if {![info exists ::webbyCount]} {           set ::webbyCount 0           set type 0         } else {           set type [expr {[incr ::webbyCount] % 4}]         }       }   }   switch -- $type {     0 { set query "http://tinyurl.com/api-create.php?[http::formatQuery url $url]" }     1 { set query "http://u.nu/unu-api-simple?[http::formatQuery url $url]" }     2 { set query "http://is.gd/api.php?[http::formatQuery longurl $url]" }     3 { set query "http://cli.gs/api/v1/cligs/create?[http::formatQuery url $url]&amp;title=&amp;key=&amp;appid=webby" }   }   set token [http::geturl $query -timeout 3000]   upvar #0 $token state   if {[string length $state(body)]} { return [string map {"\n" ""} $state(body)] }   return $url}</code></pre></div>*partyline*<br>.chanset #yourchan +lmgtfy<br><br>*afterwards in #yourchan*<br>&lt;nick&gt; !lmgfty Other_Nick annoying me with your lame requests<br>&lt;bot&gt; Other_Nick -&gt; <a href="http://u.nu/792k" class="postlink">http://u.nu/792k</a><br><br>The url given depends on how you set the lmgtfyShortType in the above config.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Tue Jul 14, 2009 6:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Skid00]]></name></author>
		<updated>2009-07-14T00:34:44-04:00</updated>

		<published>2009-07-14T00:34:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89535#p89535</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89535#p89535"/>
		<title type="html"><![CDATA[let me google that for you]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89535#p89535"><![CDATA[
Hi There<br><br><br>Im searching a tcl script for eggdrop that let me make querys on <br>"let me google that for you" (<a href="http://lmgtfy.com/" class="postlink">http://lmgtfy.com/</a>) <br><br>The script should work with a trigger e.g: !lmgtfy &lt;nick&gt; "query"<br>and should post the result in tinyurl-format in the chan e.g: "&lt;nick&gt;:&lt;tinyurl&gt;"<br><br><br>somebody know a solution?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10753">Skid00</a> — Tue Jul 14, 2009 12:34 am</p><hr />
]]></content>
	</entry>
	</feed>
