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

	<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>2012-12-01T13:37:47-04:00</updated>

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

		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2012-12-01T13:37:47-04:00</updated>

		<published>2012-12-01T13:37:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100323#p100323</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100323#p100323"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100323#p100323"><![CDATA[
Just for the fun of it...<br><br>Variable a contains a string with a single word. Additionally, the string is list-like.<br>Variable b contains a string with two words separated by a space. Additionally, the string is list-like.<br><br>These two cases are trivial, since the equivalent tcl-list would be identical to the string. There is, however, the more complex cases:<div class="codebox"><p>Code: </p><pre><code>set c1 "{one"set c2 [list "{one"]set d1 "{one two}"set d2 [list "{one" "two}"]</code></pre></div>In this case, neither c1 nor d1 are list-like, and list-commands will have problems making the proper actions on these.<br>c2 and d2 on the other hand, are properly defined lists, and will work as expected with all list commands.<br><br>Another example:<div class="codebox"><p>Code: </p><pre><code>set data "   "if {[llength $data] &gt; 0} {  puts stdout {$data is empty}} else {  puts stdout {$data is not empty}}if {[string length $data] &gt; 0} {  puts stdout {$data is empty}} else {  puts stdout {$data is not empty}}</code></pre></div>Here, data is a string containing a few spaces. It is list-like with no elements, yet the variable is not empty.<br><br>Since tcl variables are not typed, it is generally a very good idea to separate lists, strings and integers; and using the various interfaces for converting inbetween these. Hand-crafting lists works well, if you are well-aware of what you are doing. It is unwize to assume any channel-user having access to this script will, or that they will not attempt to exploit it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat Dec 01, 2012 1:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-12-01T13:19:02-04:00</updated>

		<published>2012-12-01T13:19:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100321#p100321</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100321#p100321"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100321#p100321"><![CDATA[
<blockquote class="uncited"><div>@willyw : A bit cocky aren't we? </div></blockquote>No.<br>I resent the implication.<br><blockquote class="uncited"><div>What I've suggested isn't written in stone somewhere, is just a suggestion </div></blockquote>You did not present it as merely your opinion.  <br>I simply read what you wrote, and replied.  (I suggest you do that also... perhaps you read into other's words that which is not there.)<br><br><blockquote class="uncited"><div>and it's up to you if you wish to use any or not.</div></blockquote>Of course.  And I decide that based on the validity - or at least perceived validity of the source.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Sat Dec 01, 2012 1:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-12-01T13:03:43-04:00</updated>

		<published>2012-12-01T13:03:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100320#p100320</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100320#p100320"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100320#p100320"><![CDATA[
@willyw : A bit cocky aren't we? What I've suggested isn't written in stone somewhere, is just a suggestion and it's up to you if you wish to use any or not.<br><br>No matter the language of programming, you should reuse the code where you can as it would be easier to debug, edit and follow a code.<br><br>@speechles : if I where to compare me with ppslim for instance, I didn't do [censored].<br><br>Anyway, what's the difference between variable $a and $b<div class="codebox"><p>Code: </p><pre><code>set a "one"set b "one two"</code></pre></div>that apart that second variable has two elements in it? Is variable $b a list or not? If I would remove an element from variable $b, would it no longer a list? why?<br><br>For me, the easiest way to check if a variable is empty is to use <em class="text-italics">llength</em> instead of <em class="text-italics">string equal</em>, or any other method you could come out with, for instance <em class="text-italics">scan</em>.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sat Dec 01, 2012 1:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-30T23:23:46-04:00</updated>

		<published>2012-11-30T23:23:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100315#p100315</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100315#p100315"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100315#p100315"><![CDATA[
<blockquote class="uncited"><div>....<br><br><strong class="text-strong">Why does it matter?</strong><br>It doesn't.</div></blockquote>That's what I thought.  But, rather than assume, it is best to simply ask - so I did.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>There is always the possibility that there is something to be learned, if the source is credible.<br><blockquote class="uncited"><div> Sometimes there are several ways to skin a cat, and to argue over which is best.</div></blockquote>Just so there is no confusion -  I wasn't.<br><blockquote class="uncited"><div> Who cares as long as both approaches end with the same net result, a skinned cat. It's still murder either way. So stop murdering each other. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"></div></blockquote>Don't worry about that with me.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">    I was replying.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Fri Nov 30, 2012 11:23 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2012-11-30T23:00:08-04:00</updated>

		<published>2012-11-30T23:00:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100313#p100313</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100313#p100313"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100313#p100313"><![CDATA[
<blockquote class="uncited"><div>and even then you should use llength in the if statement like: <div class="codebox"><p>Code: </p><pre><code>if {![llength $user]} {# do whatever, $user is empty}</code></pre></div></div></blockquote>@caeser:<br>Since when do we allow strings ( $user is a string here ) to be manipulated with list commands ( llength works on lists )?...........(correct answer is, since never <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> )<br>Did you mean ![string length $user]? Sometimes in our rush to correct others problems, we cause them to inherit ours. There are several ways to skin a cat, which one is the best method is usually best left up to the cat killer. Don't you agree?<br><br>@caesar and @willyw:<br>BTW caesar, I like you dude. You do plenty for this site yo. Don't take this as some swipe at your credibility. Same as willyw, props yo. But this is beyond the scope of OP's original topic in this thread. So I'll get to the point....<br><br><strong class="text-strong">Why does it matter?</strong><br>It doesn't. Sometimes there are several ways to skin a cat, and to argue over which is best. Who cares as long as both approaches end with the same net result, a skinned cat. It's still murder either way. So stop murdering each other. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>BTW: lol... roflcopter...lollerskates  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes">  <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=8138">speechles</a> — Fri Nov 30, 2012 11:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-30T14:44:31-04:00</updated>

		<published>2012-11-30T14:44:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100311#p100311</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100311#p100311"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100311#p100311"><![CDATA[
<blockquote class="uncited"><div>Why do you split the same variable twice and not just one and reuse it?</div></blockquote>Probably because it was used only twice in that procedure.<br><blockquote class="uncited"><div> Meaning at least define the user (<em class="text-italics">set user [lindex [split $text] 0]</em>) before the if statement cos you will check if it's empty or not,</div></blockquote>That is in a different procedure.<br><blockquote class="uncited"><div> and even then you should use <em class="text-italics">llength</em> in the if statement like:<div class="codebox"><p>Code: </p><pre><code>if {![llength $user]} {# do whatever, $user is empty}</code></pre></div></div></blockquote>"should" ??<br><br>I'm just self taught.  If there is some principle or convention of good TCL programming that I've violated, that is why I'm unaware of it.<br>Perhaps you could point me - with a link - to some good reading on that, particularly this example that you've pointed out.<br><br><blockquote class="uncited"><div>A better approach is to use <em class="text-italics">scan</em> instead of:<div class="codebox"><p>Code: </p><pre><code> if {[lindex [split $text] 0] == ""} {      putserv "privmsg $chan :Syntax: !idle &lt;nick&gt;"      return 0         }   set user [lindex [split $text] 0] </code></pre></div>would simply be:<div class="codebox"><p>Code: </p><pre><code>if {[scan $text {%s} user] != 1} {puthelp "PRIVMSG $chan :Syntax: !idle &lt;nick&gt;"return}</code></pre></div></div></blockquote>You forgot to say WHY it is better.<br><blockquote class="uncited"><div>Same thing goes with the:<div class="codebox"><p>Code: </p><pre><code>putserv "privmsg $working_chan :[lindex [split $text] 1] idle time is: [duration [lindex [split $text] 2]]"   </code></pre></div>at least</div></blockquote>?<br>Why does it matter?<br><blockquote class="uncited"><div> split the $text once and reuse it as many times you wish, or use scan instead and get something like:<div class="codebox"><p>Code: </p><pre><code>if {[scan $text {%s%s%s} raw user idle] &gt;= 3} {puthelp "PRIVMSG $working_chan :$user idle time is: [duration $idle]"}</code></pre></div></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Fri Nov 30, 2012 2:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-11-30T01:29:29-04:00</updated>

		<published>2012-11-30T01:29:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100310#p100310</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100310#p100310"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100310#p100310"><![CDATA[
Why do you split the same variable twice and not just one and reuse it? Meaning at least define the user (<em class="text-italics">set user [lindex [split $text] 0]</em>) before the if statement cos you will check if it's empty or not, and even then you should use <em class="text-italics">llength</em> in the if statement like:<div class="codebox"><p>Code: </p><pre><code>if {![llength $user]} {# do whatever, $user is empty}</code></pre></div>A better approach is to use <em class="text-italics">scan</em> instead of:<div class="codebox"><p>Code: </p><pre><code> if {[lindex [split $text] 0] == ""} {      putserv "privmsg $chan :Syntax: !idle &lt;nick&gt;"      return 0         }   set user [lindex [split $text] 0] </code></pre></div>would simply be:<div class="codebox"><p>Code: </p><pre><code>if {[scan $text {%s} user] != 1} {puthelp "PRIVMSG $chan :Syntax: !idle &lt;nick&gt;"return}</code></pre></div>Same thing goes with the:<div class="codebox"><p>Code: </p><pre><code>putserv "privmsg $working_chan :[lindex [split $text] 1] idle time is: [duration [lindex [split $text] 2]]"   </code></pre></div>at least split the $text once and reuse it as many times you wish, or use scan instead and get something like:<div class="codebox"><p>Code: </p><pre><code>if {[scan $text {%s%s%s} raw user idle] &gt;= 3} {puthelp "PRIVMSG $working_chan :$user idle time is: [duration $idle]"}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Nov 30, 2012 1:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hero]]></name></author>
		<updated>2012-11-29T16:26:20-04:00</updated>

		<published>2012-11-29T16:26:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100306#p100306</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100306#p100306"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100306#p100306"><![CDATA[
Yeh <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=12019">Hero</a> — Thu Nov 29, 2012 4:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-29T15:53:20-04:00</updated>

		<published>2012-11-29T15:53:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100305#p100305</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100305#p100305"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100305#p100305"><![CDATA[
<blockquote class="uncited"><div>2nd Is Better Then 1st <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"></div></blockquote>Excellent.   <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=10420">willyw</a> — Thu Nov 29, 2012 3:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hero]]></name></author>
		<updated>2012-11-29T15:41:10-04:00</updated>

		<published>2012-11-29T15:41:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100304#p100304</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100304#p100304"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100304#p100304"><![CDATA[
2nd Is Better Then 1st <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=12019">Hero</a> — Thu Nov 29, 2012 3:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-29T15:34:41-04:00</updated>

		<published>2012-11-29T15:34:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100303#p100303</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100303#p100303"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100303#p100303"><![CDATA[
<blockquote class="uncited"><div>Thanks Willyw </div></blockquote>You're welcome.  <br><blockquote class="uncited"><div>Its Working Awesome</div></blockquote>Which one did you decide to use?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Thu Nov 29, 2012 3:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hero]]></name></author>
		<updated>2012-11-29T15:22:32-04:00</updated>

		<published>2012-11-29T15:22:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100302#p100302</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100302#p100302"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100302#p100302"><![CDATA[
Thanks Willyw Its Working Awesome<br>Thanks For Help <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=12019">Hero</a> — Thu Nov 29, 2012 3:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-29T15:12:53-04:00</updated>

		<published>2012-11-29T15:12:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100301#p100301</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100301#p100301"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100301#p100301"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># Nov 29, 2012# reference:  http://forum.egghelp.org/viewtopic.php?t=19178# Hero#   # New postPosted: Today at 1:13 pm    Post subject: Need Idle Check TCL    Reply with quote# Hello I Wanna Request Idle Check Tcl# Like:# &lt;+Hero&gt; !Idle Hero# &lt;&amp;Bot&gt; Hero Idle Time Is: 5hrs 20mins 36secs# Thanks In Advance###################### Method - have bot do /whois on user, and get the idle time from return.  Should give resolution in seconds, as requested ########bind pub - "!idle" get_idle_time_whoisproc get_idle_time_whois {nick uhost handle chan text} {global working_chanif {[lindex [split $text] 0] == ""} {putserv "privmsg $chan :Syntax: !idle &lt;nick&gt;"return 0         }set user [lindex [split $text] 0]if {![onchan $user $chan]} {putserv "privmsg $chan :Sorry, $user is not on $chan"return 0         }set working_chan $chanbind raw - 317 got_whoisputserv "whois $user $user"}proc got_whois {from keyword text} {global working_chanputserv "privmsg $working_chan :[lindex [split $text] 1] idle time is: [duration [lindex [split $text] 2]]"utimer 5 [list unbind raw - 317 got_whois] }</code></pre></div>Don't load both scripts at the same time.  One or the other, never both.<br><br><br>I hope this helps.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Thu Nov 29, 2012 3:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-11-29T15:09:53-04:00</updated>

		<published>2012-11-29T15:09:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100300#p100300</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100300#p100300"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100300#p100300"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># Nov 29, 2012# reference:  http://forum.egghelp.org/viewtopic.php?t=19178# Hero## New postPosted: Today at 1:13 pm    Post subject: Need Idle Check TCL Reply with quote# Hello I Wanna Request Idle Check Tcl# Like:# &lt;+Hero&gt; !Idle Hero# &lt;&amp;Bot&gt; Hero Idle Time Is: 5hrs 20mins 36secs# Thanks In Advance#########################  simple script  - resolution to the minute, using bot's built in idle function  ###########bind pub - "!idle" say_idle_timeproc say_idle_time {nick uhost handle chan text} {if {[lindex [split $text] 0] == ""} {putserv "privmsg $chan :Syntax: !idle &lt;nick&gt;"return 0         }set user [lindex [split $text] 0]if {![onchan $user $chan]} {putserv "privmsg $chan :Sorry, $user is not on $chan"return 0         }putserv "privmsg $chan :$user idle time in $chan is:  [duration [getchanidle $user $chan]]"}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Thu Nov 29, 2012 3:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hero]]></name></author>
		<updated>2012-11-29T14:13:15-04:00</updated>

		<published>2012-11-29T14:13:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100299#p100299</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100299#p100299"/>
		<title type="html"><![CDATA[Need Idle Check TCL]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100299#p100299"><![CDATA[
Hello I Wanna Request Idle Check Tcl<br>Like:<br>&lt;+Hero&gt; !Idle Hero<br>&lt;&amp;Bot&gt; Hero Idle Time Is: 5hrs 20mins 36secs<br>Thanks In Advance<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12019">Hero</a> — Thu Nov 29, 2012 2:13 pm</p><hr />
]]></content>
	</entry>
	</feed>
