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

	<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>2007-10-20T07:41:59-04:00</updated>

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

		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2007-10-20T07:41:59-04:00</updated>

		<published>2007-10-20T07:41:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76906#p76906</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76906#p76906"/>
		<title type="html"><![CDATA[voice only with specific flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76906#p76906"><![CDATA[
I wonder why you use 2 if conditions in such a trivial issue. Also using pushmode is considered more spam proof, because it can accumulate mode requests which might arise in a join-flood... these often arise on net rejoins.<div class="codebox"><p>Code: </p><pre><code>  if {![matchattr $handle H|H $channel] &amp;&amp; $channel == $::g_pickupchan} {    pushmode $channel -v $victim  }  return 0</code></pre></div>These 4 lines of code would be enough within the proc.<br><br>Also about the person who grants voice... if the person who has the flag H voices a person, it is fine, in all other (all is in, even permanent owner is not recognized) cases it should devoice the person?!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Sat Oct 20, 2007 7:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2007-10-20T07:38:53-04:00</updated>

		<published>2007-10-20T07:38:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76905#p76905</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76905#p76905"/>
		<title type="html"><![CDATA[voice only with specific flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76905#p76905"><![CDATA[
Check your channel settings, or see if you have superbitch.tcl settings on that channel. look for +bitch on .chaninfo #channel_name And there is also a chance that the user could have been given the devoice flag check the .whois &lt;handle&gt; on the DCC/Chat telnet partyline.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Sat Oct 20, 2007 7:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ultralord]]></name></author>
		<updated>2007-10-19T15:07:16-04:00</updated>

		<published>2007-10-19T15:07:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76884#p76884</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76884#p76884"/>
		<title type="html"><![CDATA[voice only with specific flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76884#p76884"><![CDATA[
i edit the code to:<div class="codebox"><p>Code: </p><pre><code>proc g_delvoices {nick host handle channel mode victim} {global g_pickupchanif {![matchattr $handle H|H $channel]} {return}if {$channel==$g_pickupchan} {     putserv "MODE $g_pickupchan -v $victim"  }}</code></pre></div>but when i give voice then the bot devoice the specific nick.. but i am authenticated before.. what is wrong? <br><br>thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8360">ultralord</a> — Fri Oct 19, 2007 3:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-10-17T19:00:10-04:00</updated>

		<published>2007-10-17T19:00:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76829#p76829</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76829#p76829"/>
		<title type="html"><![CDATA[voice only with specific flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76829#p76829"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>if {![matchattr $handle H|H $channel]} {return}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Wed Oct 17, 2007 7:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ultralord]]></name></author>
		<updated>2007-10-17T09:52:09-04:00</updated>

		<published>2007-10-17T09:52:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76820#p76820</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76820#p76820"/>
		<title type="html"><![CDATA[voice only with specific flag]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76820#p76820"><![CDATA[
Hello i have this script..<br><div class="codebox"><p>Code: </p><pre><code>set g_pickupchan "#channel"bind mode - "% +v" g_delvoicesproc g_delvoices {nick host handle channel mode victim} {global g_pickupchanif { [matchattr $hand H] } {return 0}if {$channel==$g_pickupchan} {     putserv "MODE $g_pickupchan -v $victim"  }}</code></pre></div>i want this: if someone have flag H .. if give voice to a user then the user will be voiced.. if someone give voice bot devoice the user.. how i can do it..?<br><br>thnx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8360">ultralord</a> — Wed Oct 17, 2007 9:52 am</p><hr />
]]></content>
	</entry>
	</feed>
