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

	<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>2003-05-27T14:20:27-04:00</updated>

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

		<entry>
		<author><name><![CDATA[kublador]]></name></author>
		<updated>2003-05-27T14:20:27-04:00</updated>

		<published>2003-05-27T14:20:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20793#p20793</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20793#p20793"/>
		<title type="html"><![CDATA[voicing users in list when bot is last who joined..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20793#p20793"><![CDATA[
kewl! thanks <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"> God bless<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3223">kublador</a> — Tue May 27, 2003 2:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-05-26T15:24:42-04:00</updated>

		<published>2003-05-26T15:24:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20725#p20725</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20725#p20725"/>
		<title type="html"><![CDATA[voicing users in list when bot is last who joined..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20725#p20725"><![CDATA[
First copy/paste the code I've posted in a file named how you wish .tcl (eg. bla.tcl) then load it to your eggdrop. For a channel command use the folowing code to voice friends (marked with +B flag):<div class="codebox"><p>Code: </p><pre><code>bind pub o !fvoice pub:fvoiceproc pub:fvoice {nick host hand chan text} {  foreach user [chanlist $chan] {     if {[strlwr $user] == [strlwr $::botnick] || [isvoice $user $chan] [isop $user $chan] || ![matchattr [nick2hand $user] |B $chan]} {       continue     }     pushmode $chan +v user   }}</code></pre></div>and this one for all the channel users:<div class="codebox"><p>Code: </p><pre><code>bind pub o !avoice pub:avoiceproc pub:avoice {nick host hand chan text} {  foreach user [chanlist $chan] {     if {[strlwr $user] == [strlwr $::botnick] || [isvoice $user $chan] [isop $user $chan]} {       continue     }     pushmode $chan +v user   }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon May 26, 2003 3:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[kublador]]></name></author>
		<updated>2003-05-26T04:50:12-04:00</updated>

		<published>2003-05-26T04:50:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20675#p20675</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20675#p20675"/>
		<title type="html"><![CDATA[voicing users in list when bot is last who joined..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20675#p20675"><![CDATA[
thanks... how can i run this? is there something i need to type in the channel to voice everyone in the userlist that has +B flag?<br><br>how bout everyone that has no voice even if it s not in the userlist?<br>thank you very much <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=3223">kublador</a> — Mon May 26, 2003 4:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-05-26T02:21:41-04:00</updated>

		<published>2003-05-26T02:21:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20664#p20664</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20664#p20664"/>
		<title type="html"><![CDATA[voicing users in list when bot is last who joined..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20664#p20664"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind join * my:joinproc my:join {nick uhost hand chan} {  if {[strlwr $nick] != [strlwr $::botnick]} {    return  }  utimer 15 [list give:voice $chan]}proc give:voice {chan} {  if {![botisop $chan]} {    return  }  foreach user [chanlist $chan] {    if {[strlwr $user] == [strlwr $::botnick] || [isvoice $user $chan] [isop $user $chan] || ![matchattr [nick2hand $user] of|of $chan]} {      continue    }    pushmode $chan +v user  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon May 26, 2003 2:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[kublador]]></name></author>
		<updated>2003-05-26T01:34:03-04:00</updated>

		<published>2003-05-26T01:34:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20660#p20660</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20660#p20660"/>
		<title type="html"><![CDATA[voicing users in list when bot is last who joined..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20660#p20660"><![CDATA[
how can i do this?<br>because when the bot is the first joined and the users in the userlist joined.. it voices automatically..<br>but when the users in the userlist are already in the channel and the eggdrop bot lastly joined..<br>it doesnt voices the users that are there before the bot joined even if they are in the userlist..<br>can someone help me?<br>thank you<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3223">kublador</a> — Mon May 26, 2003 1:34 am</p><hr />
]]></content>
	</entry>
	</feed>
