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

	<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-09-08T07:17:48-04:00</updated>

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

		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-09-08T07:17:48-04:00</updated>

		<published>2005-09-08T07:17:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=55450#p55450</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=55450#p55450"/>
		<title type="html"><![CDATA[no manual BAN tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=55450#p55450"><![CDATA[
It was a 1.7.0 only bug: <a href="http://www.eggheads.org/bugzilla/show_bug.cgi?id=435" class="postlink">http://www.eggheads.org/bugzilla/show_bug.cgi?id=435</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Thu Sep 08, 2005 7:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-09-04T13:34:38-04:00</updated>

		<published>2005-09-04T13:34:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=55276#p55276</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=55276#p55276"/>
		<title type="html"><![CDATA[no manual BAN tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=55276#p55276"><![CDATA[
yep I think there was a bug in [pushmode] not handling bans correctly<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sun Sep 04, 2005 1:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-09-04T10:26:11-04:00</updated>

		<published>2005-09-04T10:26:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=55271#p55271</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=55271#p55271"/>
		<title type="html"><![CDATA[no manual BAN tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=55271#p55271"><![CDATA[
what version of eggdrop did you use? anyhow the only time I encountered such an error was in an ealier version of the new 1.7, but today it should be fixed.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Sun Sep 04, 2005 10:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-09-03T05:57:09-04:00</updated>

		<published>2005-09-03T05:57:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=55236#p55236</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=55236#p55236"/>
		<title type="html"><![CDATA[no manual BAN tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=55236#p55236"><![CDATA[
Try<div class="codebox"><p>Code: </p><pre><code>proc no_manual_add_ban {nick uhost hand chan mode ban} {  if {(![matchattr $hand b]) &amp;&amp; (![matchattr $hand n])} {  putserv "MODE $chan -ob $nick $ban"  putlog "Manual ban on $chan - Ban : $ban"  } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Sep 03, 2005 5:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[natter]]></name></author>
		<updated>2005-09-03T04:27:53-04:00</updated>

		<published>2005-09-03T04:27:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=55231#p55231</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=55231#p55231"/>
		<title type="html"><![CDATA[no manual BAN tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=55231#p55231"><![CDATA[
I want to add this feature at my tcl : <br>If guest_user add ban , Bot deop and remove ban <br><br>I try with ... <br><div class="codebox"><p>Code: </p><pre><code>proc no_manual_add_ban {nick uhost hand chan mode ban} {         if {(![matchattr $hand b]) &amp;&amp; (![matchattr $hand n])} {         pushmode $chan -o $nick         putlog "Manual ban on $chan - Ban : $ban"        pushmode $chan -b $ban         } } </code></pre></div>In Chan : <br><br>GUEST_user sets mode: +b *!test@test <br>BOT sets mode: -o GUEST_user <br><br>In Partyline :<br><br>Manual ban on #testchan - Ban : *!test@test <br><br>Bot dont remove ban ... where is the error ? <br><br><br>tnx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6679">natter</a> — Sat Sep 03, 2005 4:27 am</p><hr />
]]></content>
	</entry>
	</feed>
