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

	<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>2010-10-17T13:50:24-04:00</updated>

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

		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-10-17T13:50:24-04:00</updated>

		<published>2010-10-17T13:50:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94777#p94777</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94777#p94777"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94777#p94777"><![CDATA[
Add to the <div class="codebox"><p>Code: </p><pre><code>if {($U &lt; $T)&amp;&amp;(![regexp -- {^[A-Z]} "$target"])} { </code></pre></div> In the if statement above.<br><br>If you have access to tclsh on youre shell, its worth just playing around with it a bit and see what matches and what dosen't. You can simply just use the basic <div class="codebox"><p>Code: </p><pre><code>$ tclsh8.5% set nick "nickname-with-&lt;char to match&gt;"% regexp -- {&lt;char to match&gt;} "$nick"</code></pre></div> will return 1 if it matches or 0 if it dosen't<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Sun Oct 17, 2010 1:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-10-17T10:28:31-04:00</updated>

		<published>2010-10-17T10:28:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94773#p94773</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94773#p94773"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94773#p94773"><![CDATA[
Hi TCL_no_TK,<br><br>sorry for the late reply, was out of town. This is your code i am using :-<div class="codebox"><p>Code: </p><pre><code>setudef flag voice-lower proc voicelower:join {nick host hand chan} {  if {[channel get "$chan" "voice-lower"]} {   if {![isbotnick "$nick"]} {    # get rid of special characters in the nickname    regsub -all -- "(\\\\|\\\[|\\\]|\\\}|\\\{|\\\^|``|\\\|)" "$nick" "" target      set T [string bytelength $target]    set U [regexp -all {[A-Z]} $target]    # dont voice if the first char in the nickname is a CAPITAL letter    if {($U &lt; $T)&amp;&amp;(![regexp -- {^[A-Z]} "$target"])} {     pushmode $chan +v $target    }   }  } }bind join - * voicelower:join### Use: .chanset &lt;#channel&gt; +voice-lower     To Enable# Use: .chanset &lt;#channel&gt; -voice-lower     TO Disable</code></pre></div>This is what i found : <br><br><strong class="text-strong">^Roland^ </strong>- did not voice - good  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> <br><strong class="text-strong">roland^</strong> -  should have voiced, did not  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused"> <br><br>I took out the |_|-| cause it was ignoring nicks like john_  or jimmy_jim<br><blockquote class="uncited"><div>You can use regexp its pretty much the same with my usage of regsub. I've used<br>Code:<br>... ![regexp -- {^[A-Z]} "$target"])} {<br>to stop it from voicing people that have nickname that starts with a capital letter. And if you wanted to make sure it didn't voice anyone with a char in the nickname for example the ^ char again. you could add<br>Code:<br>(![regexp -- {\^} "$target"]</div></blockquote>I dont understand this part, where do i insert the nickname characters in the code? <strong class="text-strong">![regexp -- {^[A-Z]} {\^} "$target"])} { </strong> Like that?<br><br>thanks again for the help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Sun Oct 17, 2010 10:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-10-03T15:24:14-04:00</updated>

		<published>2010-10-03T15:24:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94635#p94635</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94635#p94635"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94635#p94635"><![CDATA[
Yeah, I was missing out the <strong class="text-strong">^</strong> in this part<div class="codebox"><p>Code: </p><pre><code>    # get rid of special characters in the nickname    regsub -all -- "(\\\\|\\\[|\\\]|\\\}|\\\{|_|-|`|\\\|)" "$nick" "" target </code></pre></div> using <div class="codebox"><p>Code: </p><pre><code>    # get rid of special characters in the nickname    regsub -all -- "(\\\\|\\\[|\\\]|\\\}|\\\{|\\\^|_|-|`|\\\|)" "$nick" "" target </code></pre></div> will fix that.<blockquote class="uncited"><div>Is there a way where i can add special characters to ignore? I see that string there in your script, was wondering how could i modify it. </div></blockquote> You can use regexp its pretty much the same with my usage of regsub. I've used <div class="codebox"><p>Code: </p><pre><code>... ![regexp -- {^[A-Z]} "$target"])} {</code></pre></div> to stop it from voicing people that have nickname that starts with a capital letter. And if you wanted to make sure it didn't voice anyone with a char in the nickname for example the <strong class="text-strong">^</strong> char again. you could add <div class="codebox"><p>Code: </p><pre><code>(![regexp -- {\^} "$target"])</code></pre></div> this will make sure the <strong class="text-strong">^</strong> char is not in the nickname.<br>Since <div class="codebox"><p>Code: </p><pre><code>    regsub -all -- "(\\\\|\\\[|\\\]|\\\}|\\\{|_|-|`|\\\|)" "$nick" "" target </code></pre></div> removes the chars from the nickname. I'd comment it out, before adding more to the if statement, so you can test what chars you want to allow and disallow from being voiced.<br><br><a href="http://forum.egghelp.org/viewtopic.php?t=4319" class="postlink">post on regexp</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Sun Oct 03, 2010 3:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-10-03T07:21:49-04:00</updated>

		<published>2010-10-03T07:21:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94628#p94628</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94628#p94628"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94628#p94628"><![CDATA[
Hey TCL_no_TK,<br><br>thanks for the update  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> Tested it out last night, here's what I found:<br><br>Doesn't  voice nicks like the following :<br><strong class="text-strong">_carol<br> coffee_addict<br> mike``<br>anna_<br>polite_miss</strong><br><br>Voiced this nick:<br><strong class="text-strong">^Roland^</strong><br><br>Is there a way where i can add special characters to ignore? I see that string there in your script, was wondering how could i modify it.<br><br>Thanks a lot again TCL, hope this feedback works.<br><br>Achilles<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Sun Oct 03, 2010 7:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-10-01T08:11:06-04:00</updated>

		<published>2010-10-01T08:11:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94595#p94595</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94595#p94595"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94595#p94595"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code> proc voicelower:join {nick host hand chan} {  if {[channel get "$chan" "voice-lower"]} {   if {![isbotnick "$nick"]} {    # get rid of special characters in the nickname    regsub -all -- "(\\\\|\\\[|\\\]|\\\}|\\\{|_|-|`|\\\|)" "$nick" "" target    set T [string bytelength $target]    set U [regexp -all {[A-Z]} $target]    # dont voice if the first char in the nickname is a CAPITAL letter    if {($U &lt; $T)&amp;&amp;(![regexp -- {^[A-Z]} "$target"])} {      pushmode $chan +v $target    }   }  } }</code></pre></div> <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=8130">TCL_no_TK</a> — Fri Oct 01, 2010 8:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-10-01T03:49:53-04:00</updated>

		<published>2010-10-01T03:49:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94592#p94592</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94592#p94592"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94592#p94592"><![CDATA[
Hi TCL_no_TK,<br><br>thanks for the quick reply and help. Plugged it into the bot and its working like a charm. All the nicks it didn't voice before it does now  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> <br><br>Just one observation tho, check it out :<br><br>``GaBuck_I (~<a href="mailto:gabucki@host.net">gabucki@host.net</a>) joined #Channel<br>#Channel: mode change '+v ``GaBuck_I' by BOT<br><br>That was the only nick it voiced that it wasn't supposed to. I am thinking the <strong class="text-strong">"``"</strong> in his nick threw the bot there. <br>But its no big deal at all, i can live with that, i am extremely pleased how well its doing, just thought id report that back for your information and for others who are also using this script.<br><br>thanks again and best regards,<br>Achilles who is slowly learning TCL<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Fri Oct 01, 2010 3:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-09-28T21:19:56-04:00</updated>

		<published>2010-09-28T21:19:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94560#p94560</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94560#p94560"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94560#p94560"><![CDATA[
I had to say I didn't have chance to look over it much, maybe add a little rule to stop nickname's starting with a capital letter from being voiced?<div class="codebox"><p>Code: </p><pre><code>$ tclsh8.5% regexp -- {^[A-Z]} "nickname"0% regexp -- {^[A-Z]} "Nickname"1</code></pre></div> so use <div class="codebox"><p>Code: </p><pre><code>    if {($U &lt; $T)&amp;&amp;(![regexp -- {^[A-Z]} "$nick"])} { </code></pre></div> and not <div class="codebox"><p>Code: </p><pre><code>    if {$U &lt; $T} { </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Tue Sep 28, 2010 9:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-09-28T09:00:59-04:00</updated>

		<published>2010-09-28T09:00:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94552#p94552</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94552#p94552"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94552#p94552"><![CDATA[
Hi TCL_no_TK,<br><br>thnks for the quick reply man, i just loaded the script up, thus far working OK.<br><br>However, just now i noticed this :<br><br><em class="text-italics">* Joins: mwf43 (~<a href="mailto:pirch@c-68-33-142-24.hsd1.md.comcast.net">pirch@c-68-33-142-24.hsd1.md.comcast.net</a>)<br>* <strong class="text-strong">BOT sets mode: +v mwf43</strong><br>* Joins: LetMe (~<a href="mailto:fullon@c122-108-58-95.sunsh1.vic.optusnet.com.au">fullon@c122-108-58-95.sunsh1.vic.optusnet.com.au</a>)<br>* <strong class="text-strong">BOT sets mode: +v LetMe</strong><br>* Parts: LetMe (~<a href="mailto:fullon@c122-108-58-95.sunsh1.vic.optusnet.com.au">fullon@c122-108-58-95.sunsh1.vic.optusnet.com.au</a>)<br></em><br><br>It voices <strong class="text-strong">mwf43</strong> like it is supposed to  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">  but it voiced <strong class="text-strong">LetMe</strong>, it shouldnt have done that as his nick starts with a capital letter <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> <br>P.S.<br>After watching it for awhile, it is voicing some but not all nicks starting with caps<br><br>what think? thanks, gratefully,<br>Achilles<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Tue Sep 28, 2010 9:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-09-27T21:12:15-04:00</updated>

		<published>2010-09-27T21:12:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94548#p94548</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94548#p94548"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94548#p94548"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code> proc voicelower:join {nick host hand chan} {  if {[channel get "$chan" "voice-lower"]} {   if {![isbotnick "$nick"]} {    set T [string bytelength $nick]    set U [regexp -all {[A-Z]} $nick]    if {$U &lt; $T} {     pushmode $chan +v $nick    }   }  } }</code></pre></div> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_arrow.gif" width="15" height="15" alt=":arrow:" title="Arrow"> As long as the nickname dosen't have all caps in it, the proc above will voice them.<div class="codebox"><p>Code: </p><pre><code>nickname   =&gt; will be voicednickNAME   =&gt; will be voicedNICKNAME   =&gt; will not be voiced</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Mon Sep 27, 2010 9:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2010-09-27T13:13:33-04:00</updated>

		<published>2010-09-27T13:13:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94546#p94546</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94546#p94546"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94546#p94546"><![CDATA[
<blockquote class="uncited"><div>Hi TCL Community,<br><br>..., it does not, however, voice people who have capital letters in their lower case nicks<br>...<br></div></blockquote>Right.<br>From the way I understand the script, this part:<div class="codebox"><p>Code: </p><pre><code>[string equal $nick [string tolower $nick]</code></pre></div>does exactly that.   Meaning:  that if the nick is not all lower case, then it will not be voiced.<br><br>Is it that you'd like *everybody* to be voiced, regardless if they have nicks already all in lower case, and also nicks with mixed case?<br><br>Perhaps you could re-state just what it is that you'd like to accomplish....<br>( or maybe I'm just confused.   <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=10420">willyw</a> — Mon Sep 27, 2010 1:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-09-27T12:02:14-04:00</updated>

		<published>2010-09-27T12:02:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94545#p94545</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94545#p94545"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94545#p94545"><![CDATA[
Hi TCL Community,<br><br>i just discovered that while the script works great at voicing lower-case nicks, it does not, however, voice people who have capital letters in their lower case nicks<br><br>for example : johnUSA or jill187{USA} does not get voiced<br><br>any chance you can take a look and see whats missing? Really appreciate it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Mon Sep 27, 2010 12:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-02-06T09:03:26-04:00</updated>

		<published>2010-02-06T09:03:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91981#p91981</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91981#p91981"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91981#p91981"><![CDATA[
Hi,<br><br>I want to thank TCL_no_TK &amp; Sir_Fz for taking the time and effort to help. I really appreciate the great work you guys are doing for the TCL/eggdrop community and the newbs like me who dont know scripting. <br><br>Like to let you guys know that your efforts are helping out a lot of appreciative people.<br><br>I tested the script on my eggy for a few days and it works well. I used Sir_Fz edit to handle the non-alphabets.<br><br>thanks again and peace out<br><br>Achilles<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Sat Feb 06, 2010 9:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2010-02-04T18:24:57-04:00</updated>

		<published>2010-02-04T18:24:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91958#p91958</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91958#p91958"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91958#p91958"><![CDATA[
What if the nickname does not contain any alphabets? Here's a modified version of TCL_no_TK's code that handles those as well.<div class="codebox"><p>Code: </p><pre><code>setudef flag voice-lowerproc voicelower:join {nick host hand chan} { if {[channel get $chan voice-lower]} {  if {![isbotnick $nick] &amp;&amp; [string equal $nick [string tolower $nick]]} {   pushmode $chan +v $nick  } }}bind join - * voicelower:join### Use: .chanset &lt;#channel&gt; +voice-lower     To Enable# Use: .chanset &lt;#channel&gt; -voice-lower     TO Disable##</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Feb 04, 2010 6:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2010-02-04T18:08:29-04:00</updated>

		<published>2010-02-04T18:08:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91957#p91957</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91957#p91957"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91957#p91957"><![CDATA[
Am really bad at using the forum Search, but there is alot of these voice scripts requested before. Here's a quick one --&gt;<div class="codebox"><p>Code: </p><pre><code> setudef flag voice-lower proc voicelower:join {nick host hand chan} {  if {[channel get "$chan" "voice-lower"]} {   if {(![isbotnick "$nick"])&amp;&amp;(![regexp -- {[A-Z]} "$nick"])} {    pushmode $chan +v $nick   }  } } bind join -|- "*%*" voicelower:join ## # Use: .chanset &lt;#channel&gt; +voice-lower     To Enable # Use: .chanset &lt;#channel&gt; -voice-lower     TO Disable ##</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Thu Feb 04, 2010 6:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[achilles1900]]></name></author>
		<updated>2010-09-27T11:57:56-04:00</updated>

		<published>2010-02-04T09:22:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91952#p91952</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91952#p91952"/>
		<title type="html"><![CDATA[Script That Voices Lowercase Nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91952#p91952"><![CDATA[
Hi Guys,<br><br>I need a script that would <strong class="text-strong">voice lowercase nicks</strong> eg. alice or dinobot.<br><br>I cant do tcl so i am afraid i cant modify any of the voice scripts. Would really appreciate your help.<br><br>I forgot to mention, the bot is in a few channels, would it also be possible to set which channel the script will run in?<br><br>thanks in advance,<br><br>Achilles<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9882">achilles1900</a> — Thu Feb 04, 2010 9:22 am</p><hr />
]]></content>
	</entry>
	</feed>
