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

	<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-11-23T11:55:18-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Lord_Haus]]></name></author>
		<updated>2010-11-23T11:55:18-04:00</updated>

		<published>2010-11-23T11:55:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=95181#p95181</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=95181#p95181"/>
		<title type="html"><![CDATA[lower autovoice]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=95181#p95181"><![CDATA[
I copied that small script and tried it, it crashed the bot, soo was it a add on to another script that i missed? if so what script was it be added to so i can use it for my bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11431">Lord_Haus</a> — Tue Nov 23, 2010 11:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Salik83]]></name></author>
		<updated>2009-04-19T17:17:17-04:00</updated>

		<published>2009-04-19T17:17:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88511#p88511</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88511#p88511"/>
		<title type="html"><![CDATA[Need little help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88511#p88511"><![CDATA[
hello guys,<br><br>i have some autovoice tcl, but i just want to add some ips so user wont get voice matching those ips.<br>or some code that will add user if global op or master type in channel .human nick and nick will automatically added to the channel +g list? :/ sorry for my bad english!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10607">Salik83</a> — Sun Apr 19, 2009 5:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2009-02-12T06:06:17-04:00</updated>

		<published>2009-02-12T06:06:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87360#p87360</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87360#p87360"/>
		<title type="html"><![CDATA[why not use regexp? :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87360#p87360"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc join:autovoice {nick uhost hand chan} {if {[channel get $chan autovoicejoin]&amp;&amp;[regexp {^[^A-Za-z]*[a-z]} $nick]} {pushmode $chan +v $nick}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Feb 12, 2009 6:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ScaryBikerGuy]]></name></author>
		<updated>2009-02-11T20:25:46-04:00</updated>

		<published>2009-02-11T20:25:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87359#p87359</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87359#p87359"/>
		<title type="html"><![CDATA[script to autovoice nicks that start with lower case letter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87359#p87359"><![CDATA[
wow...thank you so much!<br><br>the irc network won't allow non letter 1st chars so we are just perfectly set. <br><br>thanks so much!!<br><br>-R<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10491">ScaryBikerGuy</a> — Wed Feb 11, 2009 8:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2009-02-11T20:13:27-04:00</updated>

		<published>2009-02-11T20:13:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87358#p87358</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87358#p87358"/>
		<title type="html"><![CDATA[script to autovoice nicks that start with lower case letter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87358#p87358"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>setudef flag autovoicejoinbind join - * join:autovoiceproc join:autovoice {nick host hand chan} {if {[channel get $chan "autovoicejoin"]} {foreach letter [split $nick ""] {if {![regexp {[a-zA-Z]} $letter]} { continue }if {[string equal [string tolower $letter] $letter]} {pushmode $chan +v $nickbreak} else {pushmode $chan -v $nickbreak}}flushmode $chan}}</code></pre></div>If the nick is [-{eggy}-] or {{_egg_}} the script will know, the first letter is lowercase and voice the person. You didn't mention what to do when non alphabetical chars are used, and what I've done is skip them, until we find the first letter used. If it's lowercase indeed, the person is voiced, otherwise it will devoice them. Which most ircd's won't issue the devoice to a user already devoiced, so really nothing happens that was just for you, to edit later and add something denoting lowercase is favored, etc..<br><br>To use it dcc chat your bot and .chanset #yourchan +autovoicejoin<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Wed Feb 11, 2009 8:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ScaryBikerGuy]]></name></author>
		<updated>2009-02-11T18:54:56-04:00</updated>

		<published>2009-02-11T18:54:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87356#p87356</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87356#p87356"/>
		<title type="html"><![CDATA[script to autovoice nicks that start with lower case letter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87356#p87356"><![CDATA[
Hi folks,<br><br>I've googled and checked the archive, but haven't been able to locate a TCL script for our little eggdrop which will auto voice nicks on entry to a room.  <br><br>The catch is that nicks which should be auto-voiced should only be those that have a lower case letter as the 1st letter...and has to work with nicks that contain curly or square brackets.<br><br>Any help or pointers would be truly appreciated.<br><br>Regards,<br>-Ray<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10491">ScaryBikerGuy</a> — Wed Feb 11, 2009 6:54 pm</p><hr />
]]></content>
	</entry>
	</feed>
