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

	<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-07-04T07:32:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-07-04T07:32:31-04:00</updated>

		<published>2003-07-04T07:32:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=23022#p23022</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=23022#p23022"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=23022#p23022"><![CDATA[
Ok guys great help THANKS! <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 Guest — Fri Jul 04, 2003 7:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-07-04T06:10:37-04:00</updated>

		<published>2003-07-04T06:10:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=23009#p23009</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=23009#p23009"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=23009#p23009"><![CDATA[
Well u can do this:<br><strong class="text-strong">.+host user *!*@host<br>.+host user2 *!*@host<br>.+host user3 *!*@host</strong><br>.......<br>where *!*@host is the same host.<br>and then <strong class="text-strong">.chattr user &lt;flags&gt; &lt;channel&gt;</strong><br>so u can set the user autovoice on the channel u want it to only.<br>and then add your code.<div class="codebox"><p>Code: </p><pre><code>if {[isvoice $nick $chan] &amp;&amp; ![matchattr $nick $examptflags $chan]} { pushmode $chan -v $nick }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Jul 04, 2003 6:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-07-03T21:50:48-04:00</updated>

		<published>2003-07-03T21:50:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22981#p22981</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22981#p22981"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22981#p22981"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>if {(isvoice $nick $chan) &amp;&amp; (![matchattr $nick $examptflags $chan])} { pushmode $chan -v $nick }</code></pre></div></div></blockquote>Almost there...<br><br>All you have to do to make your 'if' work is replace those ()'s with []'s to have the 'isvoice' executed.<br><br>In tcl brackets are used to perform "command substitution". This means what ever's between a opening/close bracket is executed (first word being interpreted as the command and any following words as arguments (read more about this here: <a href="http://tcl.tk/man/tcl8.4/TclCmd/Tcl.htm" class="postlink">http://tcl.tk/man/tcl8.4/TclCmd/Tcl.htm</a>)) and the entire thing is then replaced by what's returned by the command.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Jul 03, 2003 9:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-07-03T19:31:40-04:00</updated>

		<published>2003-07-03T19:31:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22980#p22980</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22980#p22980"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22980#p22980"><![CDATA[
Well actualli I was thinking of just using 1 handle (abc) and add about 5 - 10 different users' *!*@host under abc and give it a g flag on #abc.<br><br>What do I need to use in order to tell the bot not to devoice the users that have their *!*@host under handle abc.<br><br>Is this the right code?<br><div class="codebox"><p>Code: </p><pre><code>if {(isvoice $nick $chan) &amp;&amp; (![matchattr $nick $examptflags $chan])} { pushmode $chan -v $nick }</code></pre></div><p>Statistics: Posted by Guest — Thu Jul 03, 2003 7:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-06-30T16:33:30-04:00</updated>

		<published>2003-06-30T16:33:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22765#p22765</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22765#p22765"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22765#p22765"><![CDATA[
.+host <strong class="text-strong">user</strong> *!*@host (you can add as many hosts as you want for  the <strong class="text-strong">user</strong> with any handle you want) so if it has the autovoice handle, the bot will voice him for all the hosts u added.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Mon Jun 30, 2003 4:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-06-30T13:59:11-04:00</updated>

		<published>2003-06-30T13:59:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22759#p22759</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22759#p22759"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22759#p22759"><![CDATA[
Thanks!<p>Statistics: Posted by Guest — Mon Jun 30, 2003 1:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-06-30T12:17:31-04:00</updated>

		<published>2003-06-30T12:17:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22756#p22756</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22756#p22756"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22756#p22756"><![CDATA[
ya u can add many host with +v flag so bot will voice them make sure autovoice is enable in channel setting<p>Statistics: Posted by Guest — Mon Jun 30, 2003 12:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-06-30T05:11:54-04:00</updated>

		<published>2003-06-30T05:11:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=22735#p22735</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=22735#p22735"/>
		<title type="html"><![CDATA[Isit possible to have many host in 1 handle?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=22735#p22735"><![CDATA[
I would like to know if it is possible to add about 30 - 40 +host under 1 handle?<br><br>If so, will the bot +v all those host if the handle have flags g?<p>Statistics: Posted by Guest — Mon Jun 30, 2003 5:11 am</p><hr />
]]></content>
	</entry>
	</feed>
