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

	<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>2007-10-07T17:06:29-04:00</updated>

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

		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2007-10-07T17:06:29-04:00</updated>

		<published>2007-10-07T17:06:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76463#p76463</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76463#p76463"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76463#p76463"><![CDATA[
currently i am using <div class="codebox"><p>Code: </p><pre><code>setudef flag deop bind mode - "*+o*" why:nick bind notc - "*Identification to the nickname*" nick:whyed proc why:nick {nick uhost hand chan mc vict} { global whyed if {![channel get $chan deop]} { return 0 } putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict" set whyed([string tolower $vict]) 1 } proc check:verify {nick host hand arg {dest ""}} {  set msg [ctrl:filter $arg]  if {[string equal $dest $::botnick]} {#   Parse ChanServ's message.    set nick [lindex [split $msg] 0]     set chan [string trim [lindex [split $msg] 5] .]     set opnick [string trim [lindex [split $msg] 12] .]} }proc nick:whyed {nick uhost hand text dest} { global whyed if {[string tolower $nick] != [string tolower $opnick]} {  putquick "KICK [stripcodes [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] 12] .] :You're using someone else's access" unset whyed([string tolower [lindex [split $text] 0]]) } } proc stripcodes {str} { regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" str return $str } </code></pre></div>its not working .. the bot does a /cs why # nick .. <br>but doesnot kick <br>if {[string tolower $nick] != [string tolower $opnick]} {   <br>[/code]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6119">pakistani1</a> — Sun Oct 07, 2007 5:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-26T07:03:59-04:00</updated>

		<published>2005-04-26T07:03:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48580#p48580</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48580#p48580"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48580#p48580"><![CDATA[
<blockquote class="uncited"><div>the above script takes the access of the nick from chanserv .. and sends a msg to chanserv requesting deop of the origional nick that has  access to the channel .. not the current nick of the user.   is it possible to parse the chanserves msg .. something like this<br><br> <br><div class="codebox"><p>Code: </p><pre><code>set nick [lindex [split $msg] 0] set chan [string trim [lindex [split $msg] 5] .] set opnick [string trim [lindex [split $msg] end] .]</code></pre></div>if yes wher ein the above script should i use this .. <br>plus .. how can i do a <div class="codebox"><p>Code: </p><pre><code>if nick != opnick { </code></pre></div>in a tcl  <br>thanx <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>This will be like:<br><div class="codebox"><p>Code: </p><pre><code>if {$nick != $opnick} {</code></pre></div>Alternatively, this is case-sensitive so:<br><div class="codebox"><p>Code: </p><pre><code>if {[string tolower $nick] != [string tolower $opnick]} {</code></pre></div>But a more better and convenient way would be:<br><div class="codebox"><p>Code: </p><pre><code>if {![string equal -nocase $nick $opnick]} {</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Tue Apr 26, 2005 7:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2005-04-26T06:31:39-04:00</updated>

		<published>2005-04-26T06:31:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48579#p48579</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48579#p48579"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48579#p48579"><![CDATA[
the above script takes the access of the nick from chanserv .. and sends a msg to chanserv requesting deop of the origional nick that has  access to the channel .. not the current nick of the user.   is it possible to parse the chanserves msg .. something like this<br><br> <br><div class="codebox"><p>Code: </p><pre><code>set nick [lindex [split $msg] 0] set chan [string trim [lindex [split $msg] 5] .] set opnick [string trim [lindex [split $msg] end] .]</code></pre></div>if yes wher ein the above script should i use this .. <br>plus .. how can i do a <div class="codebox"><p>Code: </p><pre><code>if nick != opnick { </code></pre></div>in a tcl  <br>thanx <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=6119">pakistani1</a> — Tue Apr 26, 2005 6:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-26T04:23:04-04:00</updated>

		<published>2005-04-26T04:23:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48569#p48569</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48569#p48569"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48569#p48569"><![CDATA[
Yes this will do it. Try todo it yourself from next time onwards, always requesting doesn't make you do it and you will therefore always request. <br><br>People can't help you, if you can't help yourself. If you really want todo something your way, try todo it yourself. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><div class="codebox"><p>Code: </p><pre><code>setudef flag deopbind mode - "*+o*" why:nickbind notc - "*Identification to the nickname*" nick:whyedproc why:nick {nick uhost hand chan mc vict} {global whyedif {![channel get $chan deop]} { return 0 }putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict"set whyed([string tolower $vict]) 1}proc nick:whyed {nick uhost hand text dest} {global whyedif {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 }if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} {putquick "PRIVMSG chanserv@services.dal.net :DEOP [stripcodes [string trimright [lindex [split $text] 5] .]] [stripcodes [string trimright [lindex [split $text] end] .]]"unset whyed([string tolower [lindex [split $text] 0]])}}proc stripcodes {str} {regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" strreturn $str}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Tue Apr 26, 2005 4:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2005-04-26T02:40:46-04:00</updated>

		<published>2005-04-26T02:40:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48561#p48561</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48561#p48561"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48561#p48561"><![CDATA[
now i am using <div class="codebox"><p>Code: </p><pre><code>setudef flag deop bind mode - "*+o*" why:nick bind notc - "*Identification to the nickname*" nick:whyed proc why:nick {nick uhost hand chan mc vict} { global whyed if {![channel get $chan deop]} { return 0 } putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict" set whyed([string tolower $vict]) 1 } proc nick:whyed {nick uhost hand text dest} { global whyed if {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 } if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} { putquick "KICK [stripcodes [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] end] .] :You're using someone else's access" unset whyed([string tolower [lindex [split $text] 0]]) } }proc stripcodes {str} { regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" str return $str } </code></pre></div>and its working gr8 .. <br>thanx every one for the help . <br>can that kick thingie be changed to a /cs deop #name nick <br>and then a notice to the nick  " you are using some one else's access " <br>thanx <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=6119">pakistani1</a> — Tue Apr 26, 2005 2:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-25T13:26:31-04:00</updated>

		<published>2005-04-25T13:26:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48540#p48540</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48540#p48540"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48540#p48540"><![CDATA[
Well you had to change the input variables in the main proc for stripcodes. Here use this:<br><div class="codebox"><p>Code: </p><pre><code>setudef flag deopbind mode - "*+o*" why:nickbind notc - "*Identification to the nickname*" nick:whyedproc why:nick {nick uhost hand chan mc vict} {global whyedif {![channel get $chan deop]} { return 0 }putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict"set whyed([string tolower $vict]) 1}proc nick:whyed {nick uhost hand text dest} {global whyedif {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 }if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} {putquick "KICK [stripcodes [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] end] .] :You're using someone else's access"unset whyed([string tolower [lindex [split $text] 0]])} proc stripcodes {str} {regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" strreturn $str}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Apr 25, 2005 1:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2005-04-25T01:55:29-04:00</updated>

		<published>2005-04-25T01:55:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48531#p48531</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48531#p48531"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48531#p48531"><![CDATA[
i tried upgrading to 1.6.17 but i couldnot .. some warnings are displayed when i use the make command. <br>i upgraded to version 1.6.16 <br>here is the code i am using .. now ...<br><div class="codebox"><p>Code: </p><pre><code>setudef flag deop bind mode - "* +o" why:nick bind notc - "*Identification to the nickname*" nick:whyed proc stripcodes {str} { regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" str return $str } proc why:nick {nick uhost hand chan mc vict} { global whyed if {![channel get $chan deop]} { return 0 } putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict" set whyed([string tolower $vict]) 1 } proc nick:whyed {nick uhost hand text dest} { global whyed if {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 } if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} { putquick "KICK [stripcodes b [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] end] .] :You're using someone else's access" unset whyed([string tolower [lindex [split $text] 0]]) } }</code></pre></div>the bot does a /msg <a href="mailto:chanserv@services.dal.net">chanserv@services.dal.net</a> why #name nick  <br>but does not kick the nick .. <br>here is the error it displays in the dcc <br><div class="codebox"><p>Code: </p><pre><code>Tcl error [nick:whyed]: wrong # args: should be "stripcodes str"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6119">pakistani1</a> — Mon Apr 25, 2005 1:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-25T00:09:21-04:00</updated>

		<published>2005-04-25T00:09:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48529#p48529</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48529#p48529"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48529#p48529"><![CDATA[
You're eggdrop version is less than 1.6.17. Please upgrade it to the latest version from <a href="http://www.eggheads.org" class="postlink">www.eggheads.org</a> or use:<br><br>wget <a href="http://www.geteggdrop.com" class="postlink">www.geteggdrop.com</a><br><br>The 'stripcodes' function is only in eggdrop versions 1.6.17 or greater, or you have to use a filter like this:<br><div class="codebox"><p>Code: </p><pre><code>proc stripcodes {str} {  regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str "" str  return $str}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Apr 25, 2005 12:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2005-04-24T23:57:47-04:00</updated>

		<published>2005-04-24T23:57:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48528#p48528</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48528#p48528"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48528#p48528"><![CDATA[
now i got this error .. <br><div class="codebox"><p>Code: </p><pre><code>Tcl error [nick:whyed]: invalid command name "stripcodes"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6119">pakistani1</a> — Sun Apr 24, 2005 11:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-04-24T11:12:28-04:00</updated>

		<published>2005-04-24T11:12:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48513#p48513</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48513#p48513"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48513#p48513"><![CDATA[
<blockquote class="uncited"><div>Also try to string map or regsub, $vict for as that nick can contain special chars [, ], etc which for arrays it can be deadly.</div></blockquote>I don't think that's necessary, I never had any problems with it anyways.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Apr 24, 2005 11:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-24T09:54:20-04:00</updated>

		<published>2005-04-24T09:54:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48510#p48510</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48510#p48510"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48510#p48510"><![CDATA[
Also try to string map or regsub, $vict for as that nick can contain special chars [, ], etc which for arrays it can be deadly.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Apr 24, 2005 9:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-04-24T08:46:03-04:00</updated>

		<published>2005-04-24T08:46:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48508#p48508</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48508#p48508"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48508#p48508"><![CDATA[
forgot to set anything to whyed(nick), this should fix it:<div class="codebox"><p>Code: </p><pre><code>setudef flag deop bind mode - "* +o" why:nick bind notc - "*Identification to the nickname*" nick:whyed proc why:nick {nick uhost hand chan mc vict} {  global whyed  if {![channel get $chan deop]} { return 0 }  putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict"  set whyed([string tolower $vict]) 1} proc nick:whyed {nick uhost hand text dest} {  global whyed  if {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 }  if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} {   putquick "KICK [stripcodes b [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] end] .] :You're using someone else's access"   unset whyed([string tolower [lindex [split $text] 0]])  } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Apr 24, 2005 8:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pakistani1]]></name></author>
		<updated>2005-04-24T05:38:37-04:00</updated>

		<published>2005-04-24T05:38:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48503#p48503</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48503#p48503"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48503#p48503"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>setudef flag deop bind mode - "* +o" why:nick bind notc - "*Identification to the nickname*" nick:whyed proc why:nick {nick uhost hand chan mc vict} { global whyed if {![channel get $chan deop]} { return 0 } putserv "PRIVMSG chanserv@services.dal.net :why $chan $vict" set whyed([string tolower $vict]) } proc nick:whyed {nick uhost hand text dest} { global whyed if {![info exists whyed([string tolower [lindex [split $text] 0]])]} { return 0 } if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]} { putquick "KICK [stripcodes b [string trimright [lindex [split $text] 5] .]] [string trimright [lindex [split $text] end] .] :You're using someone else's access" unset whyed([string tolower [lindex [split $text] 0]]) } }</code></pre></div>thats the code and this the error that i got <div class="codebox"><p>Code: </p><pre><code>Tcl error [why:nick]: can't read "whyed(metallica-)": no such variable</code></pre></div>metallica- was the nick that i used to op in the channel with someone elses access.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6119">pakistani1</a> — Sun Apr 24, 2005 5:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-04-23T21:12:49-04:00</updated>

		<published>2005-04-23T21:12:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48495#p48495</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48495#p48495"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48495#p48495"><![CDATA[
<blockquote class="uncited"><div>missing close-brace</div></blockquote>add a } at the end of the proc.<div class="codebox"><p>Code: </p><pre><code> ........ unset whyed([string tolower [lindex [split $text] 0]])  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Apr 23, 2005 9:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-04-23T20:15:40-04:00</updated>

		<published>2005-04-23T20:15:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48492#p48492</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48492#p48492"/>
		<title type="html"><![CDATA[script request]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48492#p48492"><![CDATA[
change this<div class="codebox"><p>Code: </p><pre><code>if {![string equal -nocase [lindex [split $text] 0] [string trimright [lindex [split $text] end] .]]}</code></pre></div>to this<div class="codebox"><p>Code: </p><pre><code>if {![string equal -nocase [lindex [split $text] 0]] [string trimright [lindex [split $text] end] .]}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Sat Apr 23, 2005 8:15 pm</p><hr />
]]></content>
	</entry>
	</feed>
