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

	<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>2006-12-18T08:15:18-04:00</updated>

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

		<entry>
		<author><name><![CDATA[sdays]]></name></author>
		<updated>2006-12-18T08:15:18-04:00</updated>

		<published>2006-12-18T08:15:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69033#p69033</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69033#p69033"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69033#p69033"><![CDATA[
Thanks that worked<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8306">sdays</a> — Mon Dec 18, 2006 8:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2006-12-17T22:18:16-04:00</updated>

		<published>2006-12-17T22:18:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69027#p69027</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69027#p69027"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69027#p69027"><![CDATA[
Try:<br><div class="codebox"><p>Code: </p><pre><code>setudef int banidbind join - "#yourchannel *" proc:banproc proc:ban {nick uhost hand chan} {  if {![isbotnick $nick] &amp;&amp; ![matchattr $hand nmofb|nmof $chan]} {    set text "http://$nick.justgotOWNED.com"    set count "[expr [channel get $chan banid] + 1]"    channel set $chan banid "$count"    putserv "TOPIC $chan :$text $count people has been banned."    putserv "MODE $chan +b $uhost"    putserv "KICK $chan $nick :$text"  } else {    putserv "PRIVMSG $nick :$nick You are lucky that you are a friend of mine. You are permitted to stay"  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Sun Dec 17, 2006 10:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sdays]]></name></author>
		<updated>2006-12-17T21:53:22-04:00</updated>

		<published>2006-12-17T21:53:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69026#p69026</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69026#p69026"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69026#p69026"><![CDATA[
I need a script that counts the bans number and it puts it in the topic like <a href="http://nick.justgotOwned.com" class="postlink">http://nick.justgotOwned.com</a> bancouner_here people has been banned.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8306">sdays</a> — Sun Dec 17, 2006 9:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sdays]]></name></author>
		<updated>2006-12-15T09:22:00-04:00</updated>

		<published>2006-12-15T09:22:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68971#p68971</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68971#p68971"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68971#p68971"><![CDATA[
Ok it worked thanks.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8306">sdays</a> — Fri Dec 15, 2006 9:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2006-12-15T09:10:57-04:00</updated>

		<published>2006-12-15T09:10:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68970#p68970</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68970#p68970"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68970#p68970"><![CDATA[
Use $chan instead of $yourchan in your kicks, etc..<br>Then either alter your binding to only match for a single channel, or compare $chan to whichever channel(s) you wish for it to operate on...<br><br>I'd suggest you go with Tosser^^'s code<br><br>Edit: Or actually, Tosser^^'s binding is slightly flawed: use this instead: <div class="codebox"><p>Code: </p><pre><code>bind join - "#channel *" proc:ban</code></pre></div> This would only trigger when ppl join #channel<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Fri Dec 15, 2006 9:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sdays]]></name></author>
		<updated>2006-12-15T08:47:45-04:00</updated>

		<published>2006-12-15T08:47:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68969#p68969</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68969#p68969"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68969#p68969"><![CDATA[
Hmm when some one joins another channel it bans them in the channel i have the script on. <br><div class="codebox"><p>Code: </p><pre><code>set yourchan "#channel"bind join - * proc:banproc proc:ban {nick uhost hand chan} {  global yourchan  if {![isbotnick $nick] &amp;&amp; ![matchattr $hand nmofb|nmof $chan]} {    set arg $yourchan    set text "http://$nick.justgotOWNED.com"    putserv "TOPIC $yourchan :$text"    putserv "MODE $yourchan +b $uhost"    putserv "KICK $yourchan $nick :$text"    } else {    putserv "PRIVMSG $nick :$nick You are lucky that you are a friend of mine. You are permitted to stay"  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8306">sdays</a> — Fri Dec 15, 2006 8:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-12-15T05:06:47-04:00</updated>

		<published>2006-12-15T05:06:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68968#p68968</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68968#p68968"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68968#p68968"><![CDATA[
sdays replace your ||s with &amp;&amp;s.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Dec 15, 2006 5:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2006-12-14T21:51:09-04:00</updated>

		<published>2006-12-14T21:51:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68967#p68967</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68967#p68967"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68967#p68967"><![CDATA[
Try<br><div class="codebox"><p>Code: </p><pre><code>bind join - "% #yourchannel *" proc:banproc proc:ban {nick uhost hand chan} {  if {![isbotnick $nick] &amp;&amp; ![matchattr $hand nmofb|nmof $chan]} {    set text "http://$nick.justgotOWNED.com"    putserv "TOPIC $chan :$text"    putserv "MODE $chan +b $uhost"    putserv "KICK $chan $nick :$text"  } else {    putserv "PRIVMSG $nick :$nick You are lucky that you are a friend of mine. You are permitted to stay"  }}</code></pre></div>Not tested.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Thu Dec 14, 2006 9:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sdays]]></name></author>
		<updated>2006-12-14T21:09:47-04:00</updated>

		<published>2006-12-14T21:09:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68966#p68966</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68966#p68966"/>
		<title type="html"><![CDATA[Need help!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68966#p68966"><![CDATA[
Can someone help me with this script please this script makes the bot ban it self owners on bot....<br><div class="codebox"><p>Code: </p><pre><code>set yourchan "#channel"bind join - * proc:banproc proc:ban {nick uhost hand chan} {  global yourchan  if {![matchattr $nick b|b] || ![matchattr $nick n|n] || ![matchattr $nick m|m] || ![matchattr $nick o|o] || ![matchattr $nick f|f]} {    set arg $yourchan    putserv "topic $yourchan http://$nick.justgotOWNED.com"    putserv "mode $yourchan +b $uhost"    putserv "kick $yourchan $nick :http://$nick.justgotOWNED.com"    } else {    putserv "PRIVMSG $nick :$nick You are lucky that you are a friend of mine. You are permitted to stay"    return  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8306">sdays</a> — Thu Dec 14, 2006 9:09 pm</p><hr />
]]></content>
	</entry>
	</feed>
