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

	<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>2013-12-13T05:09:54-04:00</updated>

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

		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2013-12-13T05:09:54-04:00</updated>

		<published>2013-12-13T05:09:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102317#p102317</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102317#p102317"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102317#p102317"><![CDATA[
could this script be modified to work with a timer instead of a line count? <br><br>For example to voice users after 30 seconds in a moderated channel and devoice them if they idle<br><br>this will help me a lot...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Fri Dec 13, 2013 5:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2009-05-25T02:56:43-04:00</updated>

		<published>2009-05-25T02:56:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88931#p88931</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88931#p88931"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88931#p88931"><![CDATA[
You might want to also check the halfop global variable in the configuration file of the bot, to determine if it is set correctly, based on your IRCd.<br><br>I dont remember the name of the parameter, but it mostly defines, the sign used for halfop, generally as "%~&amp;" or something.<br><br>regards,<br>JD<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon May 25, 2009 2:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arcADE]]></name></author>
		<updated>2009-05-24T16:11:26-04:00</updated>

		<published>2009-05-24T16:11:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88922#p88922</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88922#p88922"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88922#p88922"><![CDATA[
for the halfop problem, it's easy enough to fix:<br><br>replace line 279 <div class="codebox"><p>Code: </p><pre><code>if {[botisop $chan] &amp;&amp; [onchan $nick $chan] &amp;&amp; ![isop $nick $chan] &amp;&amp; ![isvoice $nick $chan]} {</code></pre></div>with <div class="codebox"><p>Code: </p><pre><code>if {([botisop $chan] || [botishalfop $chan]) &amp;&amp; [onchan $nick $chan] &amp;&amp; ![isop $nick $chan] &amp;&amp; ![isvoice $nick $chan]} {</code></pre></div>also, you forgot to check if the bot is op'd in the devoice routine, so that's why it worked with halfop, but it's usefull to check just to prevent it from trying when it's not op'd or halfop'd<br><br>replace line 322:<div class="codebox"><p>Code: </p><pre><code>if {[botonchan $chan] &amp;&amp; ![info exists exempt] &amp;&amp; ([getchanidle $user $chan] &gt;= $autovoice(dvtime))} {</code></pre></div>with:<div class="codebox"><p>Code: </p><pre><code>if {([botisop $chan] || [botishalfop $chan]) &amp;&amp; [botonchan $chan] &amp;&amp; ![info exists exempt] &amp;&amp; ([getchanidle $user $chan] &gt;= $autovoice(dvtime))} {</code></pre></div>hope it helps<br><br>PS: sorry for reviving a dead thread, just thought it was worth posting this<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7334">arcADE</a> — Sun May 24, 2009 4:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2009-04-26T14:59:01-04:00</updated>

		<published>2009-04-26T14:59:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88586#p88586</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88586#p88586"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88586#p88586"><![CDATA[
I am not sure, which type of IRCd you're network works on. But basically I designed it for bahamut, i.e. DALnet, where only two modes +o and +v are available, ops and voices respectively.<br><br>Networks with +h, half op, or half voice or whatever, I am not sure, this script will work or not. Haven't tested it there. You might have to edit the script yourself or ask someone to do it according to your needs.<br><br>Peace,<br>awyeah<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Apr 26, 2009 2:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[hagemaru]]></name></author>
		<updated>2009-03-28T20:54:34-04:00</updated>

		<published>2009-03-28T20:54:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88183#p88183</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88183#p88183"/>
		<title type="html"><![CDATA[bot in hop mode (+h)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88183#p88183"><![CDATA[
if bot in hop mode (+h) why activechatter no work for autovoice. Is onli work for devoice only?, thanks<br>regrads<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10569">hagemaru</a> — Sat Mar 28, 2009 8:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2009-02-22T21:34:22-04:00</updated>

		<published>2009-02-22T21:34:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87518#p87518</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87518#p87518"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87518#p87518"><![CDATA[
Yes, I hope so. It is a shame that it interferes with logging, as it is now.<br><br>The function that it provides a channel can be a nice touch.   I like it, and wish I could use it.<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Sun Feb 22, 2009 9:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2009-02-22T21:22:31-04:00</updated>

		<published>2009-02-22T21:22:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87516#p87516</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87516#p87516"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87516#p87516"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>works now ....</div></blockquote>Well... watch out for the interference with logging.   That's not fixed yet.<br><br>As for the other part -    you're welcome.   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"></div></blockquote>Hopefully, someone can improvise and take up this challenge.. there are a lot of gurus in the forum now a days.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Feb 22, 2009 9:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2009-02-22T21:21:10-04:00</updated>

		<published>2009-02-22T21:21:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87515#p87515</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87515#p87515"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87515#p87515"><![CDATA[
The updated script is uploaded on:<br><a href="http://channels.dal.net/awyeah/" class="postlink">http://channels.dal.net/awyeah/</a><br><br>Active Chatter v3.80.b<br><a href="http://metalab.uniten.edu.my/~jawad/activechatter.tcl" class="postlink">http://metalab.uniten.edu.my/~jawad/activechatter.tcl</a><br><br>It will be available on egghelp's TCL Archive hopefully by the end of this month, i.e. February 2009. I have sent it to slennox already. This will be the last update for this script.<br><br>regards,<br>awyeah<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Feb 22, 2009 9:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2009-02-18T13:19:51-04:00</updated>

		<published>2009-02-18T13:19:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87440#p87440</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87440#p87440"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87440#p87440"><![CDATA[
<blockquote class="uncited"><div>works now ....</div></blockquote>Well... watch out for the interference with logging.   That's not fixed yet.<br><br>As for the other part -    you're welcome.   <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=10420">willyw</a> — Wed Feb 18, 2009 1:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[swarfega]]></name></author>
		<updated>2009-02-18T12:45:52-04:00</updated>

		<published>2009-02-18T12:45:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87438#p87438</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87438#p87438"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87438#p87438"><![CDATA[
works now thanks to that update. Thanks.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8269">swarfega</a> — Wed Feb 18, 2009 12:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2009-02-17T20:11:05-04:00</updated>

		<published>2009-02-17T20:11:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87425#p87425</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87425#p87425"/>
		<title type="html"><![CDATA[Re: Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87425#p87425"><![CDATA[
<blockquote class="uncited"><div>Ive got it autovoicing on chat but its not devoicing after the set time (in this case 20 minutes).<br><br>btw i love your scripts.</div></blockquote>I don't know if the version you've downloaded has been fixed or not.<br><br>But check out this thread:<br><a href="http://forum.egghelp.org/viewtopic.php?t=13881&amp;postdays=0&amp;postorder=asc&amp;start=15" class="postlink">http://forum.egghelp.org/viewtopic.php? ... c&amp;start=15</a><br><br>as I got an answer to the part about not de-voicing.  How to fix it, is in that thread.     I haven't gotten a reply on the other part though.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Tue Feb 17, 2009 8:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[swarfega]]></name></author>
		<updated>2009-02-17T19:20:21-04:00</updated>

		<published>2009-02-17T19:20:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87424#p87424</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87424#p87424"/>
		<title type="html"><![CDATA[Active Chatter v3.72.b by awyeah]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87424#p87424"><![CDATA[
Ive got it autovoicing on chat but its not devoicing after the set time (in this case 20 minutes).<br><br>btw i love your scripts.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8269">swarfega</a> — Tue Feb 17, 2009 7:20 pm</p><hr />
]]></content>
	</entry>
	</feed>
