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

	<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>2005-02-20T21:26:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-02-20T21:26:31-04:00</updated>

		<published>2005-02-20T21:26:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46811#p46811</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46811#p46811"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46811#p46811"><![CDATA[
Okay then use, putdccraw, putserv, putquick, put[whateveryoufeellike] also maybe puthelp can also work? not sure! <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">. I just used pushmode because it already came within the source code.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Feb 20, 2005 9:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-02-20T21:20:09-04:00</updated>

		<published>2005-02-20T21:20:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46810#p46810</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46810#p46810"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46810#p46810"><![CDATA[
<blockquote class="uncited"><div>and also would not be able to check for if the nick was opped or voiced in the past 120 seconds or so.</div></blockquote>half correct, pushmode won't send a +v command line to the server from someone he knows as beeing voiced (checked raw log from 1.6.18+notesfix). Thats one of many advantages from pushmode to putserv <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink">. however, since +o doesnt implict +v, it will of course voice someone who was opped <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink">.<br>if believe spocks first is still the best for what he wants <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink">. He just made the mistake, that [autovoice ...] will imidiatly call autovoice and forward the return value from autovoice to utimer (in this case it was an empty string) <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Sun Feb 20, 2005 9:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-02-20T20:46:52-04:00</updated>

		<published>2005-02-20T20:46:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46809#p46809</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46809#p46809"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46809#p46809"><![CDATA[
<blockquote class="uncited"><div>yes, i read that, but i  want that if an user isn't on eggs db he voice too<br><br>tnks HecKel</div></blockquote>This code will do the same, I see no flag for the bind, it is empty meaning everyone and anyone will get a voice. A simple autovoice script with a delaying queue.<br><div class="codebox"><p>Code: </p><pre><code>bind join - "*" join:autovoiceproc join:autovoice {nick host hand chan} { if {![isbotnick $nick] &amp;&amp; [string equal -nocase "#lamers" $chan]} {  utimer 120 [list autovoice $nick $chan]  }}proc autovoice {nick chan} {if {![isop $nick $chan] &amp;&amp; ![isvoice $nick $chan]} {  pushmode $chan +v $nick  }}</code></pre></div>NOTE: You can also use:<br><blockquote class="uncited"><div>utimer 120 "pushmode $chan +v $nick"</div></blockquote>If you want to make it more simpler. But for this you will not need the second proc "autovoice", and also would not be able to check for if the nick was opped or voiced in the past 120 seconds or so.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Feb 20, 2005 8:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[HecKel]]></name></author>
		<updated>2005-02-20T15:34:14-04:00</updated>

		<published>2005-02-20T15:34:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46805#p46805</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46805#p46805"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46805#p46805"><![CDATA[
yes, i read that, but i  want that if an user isn't on eggs db he voice too<br><br>tnks HecKel<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5906">HecKel</a> — Sun Feb 20, 2005 3:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2005-02-20T15:21:13-04:00</updated>

		<published>2005-02-20T15:21:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46803#p46803</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46803#p46803"/>
		<title type="html"><![CDATA[Re: Timed voice dont work...., the egg voices all user onjoi]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46803#p46803"><![CDATA[
<blockquote class="uncited"><div>I want the egg voices an user without op after 2 minutes, then I create that..., bug now the eggs voices all users aswell oped users..., and don't wait the 2 minutes..., what is wrong?</div></blockquote> <div class="codebox"><p>Code: </p><pre><code>aop-delay                autoop or autovoice delaytime      0:0  no delay      x:x  x sec delaytime      x:y  random delay, minimum x sec, maximum y sec</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Sun Feb 20, 2005 3:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2005-02-20T12:32:53-04:00</updated>

		<published>2005-02-20T12:32:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46788#p46788</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46788#p46788"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46788#p46788"><![CDATA[
utimer 120 [list autovoice $nick $chan]<br><br>(can also use "timer 2")<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2369">spock</a> — Sun Feb 20, 2005 12:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[HecKel]]></name></author>
		<updated>2005-02-20T11:40:40-04:00</updated>

		<published>2005-02-20T11:40:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46785#p46785</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46785#p46785"/>
		<title type="html"><![CDATA[Timed voice dont work...., the egg voices all user onjoin!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46785#p46785"><![CDATA[
I want the egg voices an user without op after 2 minutes, then I create that..., bug now the eggs voices all users aswell oped users..., and don't wait the 2 minutes..., what is wrong?<br><blockquote class="uncited"><div>bind join - * join:autovoice<br><br>proc join:autovoice {nick host hand chan} {<br>if {$chan == "#lamers"} {<br>utimer 120 [autovoice $nick $chan]<br>}<br>}<br>proc autovoice {nick chan} {<br>if {![isop $nick $chan]} {pushmode $chan +v $nick}<br>}</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5906">HecKel</a> — Sun Feb 20, 2005 11:40 am</p><hr />
]]></content>
	</entry>
	</feed>
