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

	<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>2008-05-20T04:26:49-04:00</updated>

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

		<entry>
		<author><name><![CDATA[username]]></name></author>
		<updated>2008-05-20T04:26:49-04:00</updated>

		<published>2008-05-20T04:26:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83021#p83021</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83021#p83021"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83021#p83021"><![CDATA[
Or read about another nice script there: <a href="http://forum.egghelp.org/viewtopic.php?t=13881" class="postlink">http://forum.egghelp.org/viewtopic.php?t=13881</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6813">username</a> — Tue May 20, 2008 4:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2008-05-19T23:34:39-04:00</updated>

		<published>2008-05-19T23:34:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83010#p83010</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83010#p83010"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83010#p83010"><![CDATA[
Search the Tcl Archives for av.pubmsg.tcl<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon May 19, 2008 11:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[4mirc]]></name></author>
		<updated>2008-05-19T21:24:07-04:00</updated>

		<published>2008-05-19T21:24:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83009#p83009</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83009#p83009"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83009#p83009"><![CDATA[
i like this script can u add devoice the user if he idle for 10 minutes ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9924">4mirc</a> — Mon May 19, 2008 9:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2007-07-20T00:43:40-04:00</updated>

		<published>2007-07-20T00:43:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74597#p74597</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74597#p74597"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74597#p74597"><![CDATA[
Your nick luck, I use an exactly similar script which I coded myself, just pasting this because I don't have to bear it coding for you, else I wouldn't have since I think already some people have coded such similar scripts. Enjoy!!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> <br><div class="codebox"><p>Code: </p><pre><code>set voicelines "30"bind pubm - "*" autovoice:usersbind join - "*" erase:recordproc autovoice:users {nick host hand chan text} { global voiceuser voicelines if {[isbotnick $nick] || [isop $nick $chan] || [isvoice $nick $chan]} { return 0 } if {[string match -nocase "#*" $chan]} { set userhost [string tolower $nick:$chan] if {![info exists voiceuser($userhost)] &amp;&amp; ![isvoice $nick $chan] &amp;&amp; ![isop $nick $chan]} {   set voiceuser($userhost) 1 } elseif {[info exists voiceuser($userhost)] &amp;&amp; ($voiceuser($userhost) &gt;= $voicelines) &amp;&amp; ![isop $nick $chan] &amp;&amp; ![isvoice $nick $chan]} {   utimer [rand 10] [list voice:delay $chan $nick]; unset voiceuser($userhost) } elseif {[info exists voiceuser($userhost)]} {   incr voiceuser($userhost)  } }}proc voice:delay {chan nick} { if {[botisop $chan] &amp;&amp; [onchan $nick $chan] &amp;&amp; ![isop $nick $chan] &amp;&amp; ![isvoice $nick $chan]} {  putserv "MODE $chan +v-k $nick \0032Active.\00312chatter"  }}proc erase:record {nick host hand chan} { global voiceuser if {[isbotnick $nick]} { return 0 } set userhost [string tolower $nick:$chan] if {[info exists voiceuser($userhost)]} { unset voiceuser($userhost) }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Fri Jul 20, 2007 12:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2007-07-19T16:35:43-04:00</updated>

		<published>2007-07-19T16:35:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74588#p74588</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74588#p74588"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74588#p74588"><![CDATA[
<a href="http://forum.egghelp.org/search.php" class="postlink">Search</a> the forum.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Jul 19, 2007 4:35 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[.pt]]></name></author>
		<updated>2007-07-19T15:22:07-04:00</updated>

		<published>2007-07-19T15:22:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=74587#p74587</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=74587#p74587"/>
		<title type="html"><![CDATA[autovoice on certain number of lines]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=74587#p74587"><![CDATA[
can someone create a simple script that will voice anyone that says a certain number of lines on a channel (resetting it if he leaves channel)<br><br><br>ty in advance<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6989">.pt</a> — Thu Jul 19, 2007 3:22 pm</p><hr />
]]></content>
	</entry>
	</feed>
