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

	<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>2001-12-18T16:55:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2001-12-18T16:55:00-04:00</updated>

		<published>2001-12-18T16:55:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2920#p2920</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2920#p2920"/>
		<title type="html"><![CDATA[Tcl-Request: Voice all Users on a Channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2920#p2920"><![CDATA[
At a guess I'd say you haven't set your network settings right (ie, modes per line). Could also just be eggdrop rebelling aginst redicuously long nicks <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":razz:" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Tue Dec 18, 2001 4:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-12-18T08:07:00-04:00</updated>

		<published>2001-12-18T08:07:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2906#p2906</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2906#p2906"/>
		<title type="html"><![CDATA[Tcl-Request: Voice all Users on a Channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2906#p2906"><![CDATA[
Hi,<br><br>I'm on the irc.webchat.org network and the !allvoice code didnt work for me. The bot only voiced 4 people and stopped.<br><br>&lt;_andy&gt; !allvoice<br>[20:53] *** HmongChat sets mode: +vvv Killer`` jo|-|nnY AuSSie^LoRsTa^cHick<br>[20:53] *** HmongChat sets mode: +v nano_bibadee_babadee_buu_icu<br><br>any ideas?<br><br>Thanks...<br><br>Andy<p>Statistics: Posted by Guest — Tue Dec 18, 2001 8:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-12-15T03:40:00-04:00</updated>

		<published>2001-12-15T03:40:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2775#p2775</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2775#p2775"/>
		<title type="html"><![CDATA[Tcl-Request: Voice all Users on a Channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2775#p2775"><![CDATA[
Works fine.<br>Thanks alot, Luxar<p>Statistics: Posted by Guest — Sat Dec 15, 2001 3:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-12-15T01:12:00-04:00</updated>

		<published>2001-12-15T01:12:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2774#p2774</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2774#p2774"/>
		<title type="html"><![CDATA[Tcl-Request: Voice all Users on a Channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2774#p2774"><![CDATA[
 [chanlist $channel] return the list of $channel so u can test this script. Need to be op of $channel to use the commande !allvoice <br><br><br>bind pub - !allvoice massvoice<br><br>proc massvoice {nick uhost hand channel arg} {<br>if [isop $nick $channel] {<br>         if [botisop $channel] {<br>            foreach needvoice [chanlist $channel] {<br>               if !([isop $needvoice $channel]||[isvoice $needvoice $channel]) {<br>                  pushmode $channel +v $needvoice<br>          }<br>       }<br>    }<br>  }<br>}<br><br>&lt;font size=-1&gt;[ This Message was edited by: agoni on 2001-12-14 22:32 ]&lt;/font&gt;<p>Statistics: Posted by Guest — Sat Dec 15, 2001 1:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-12-14T22:34:00-04:00</updated>

		<published>2001-12-14T22:34:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2772#p2772</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2772#p2772"/>
		<title type="html"><![CDATA[Tcl-Request: Voice all Users on a Channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2772#p2772"><![CDATA[
Hi there,<br>i need a tcl-script which voices all users on a channel without giving all nicks as a parameter.<br>shall be a publich command like !voiceall.<br>i dont know, who to tell the script all the nicks on the channel...<br><br>Thanks for helping, Luxar<p>Statistics: Posted by Guest — Fri Dec 14, 2001 10:34 pm</p><hr />
]]></content>
	</entry>
	</feed>
