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

	<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-01-27T04:22:37-04:00</updated>

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

		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2005-01-27T04:22:37-04:00</updated>

		<published>2005-01-27T04:22:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45851#p45851</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45851#p45851"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45851#p45851"><![CDATA[
whoops!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> forgot to add a 'channel check thing' and the 'isop' <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jan 27, 2005 4:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-01-26T21:06:54-04:00</updated>

		<published>2005-01-26T21:06:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45839#p45839</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45839#p45839"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45839#p45839"><![CDATA[
Sorry for the delayed reply was a bit busy. 'caesar' tried todo good but missed a few things out, it should be like this:<br><br><div class="codebox"><p>Code: </p><pre><code>bind notc - "*" notice:banproc notice:ban {nick uhost hand text dest} {  if {[string equal -nocase "#complexity" $dest] &amp;&amp; ![isop $nick $dest] &amp;&amp; [botisop $dest]} {    putquick "MODE $dest +b *!*@[lindex [split $uhost @] 1]" -next    putquick "KICK $dest $nick :Do not notice the channel!" -next  }}</code></pre></div>I used todo alot of mIRC scripting in my earlier days, but kind of gave it up because its only for kiddies now, I guess. Since mIRC Scripting RIPPING is famous all over the internet, heh.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Wed Jan 26, 2005 9:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2005-01-26T11:17:59-04:00</updated>

		<published>2005-01-26T11:17:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45834#p45834</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45834#p45834"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45834#p45834"><![CDATA[
someone could make a fortune here converting lame mirc code to tcl <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mrgreen.gif" width="15" height="15" alt=":mrgreen:" title="Mr. Green">  if any of these dweebs had any money, that is.........<br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Wed Jan 26, 2005 11:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2005-01-26T04:29:21-04:00</updated>

		<published>2005-01-26T04:29:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45830#p45830</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45830#p45830"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45830#p45830"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind notc - * notice:banproc notice:ban {nick uhost hand text dest} {  if {![string equal -length 1 # $dest]} {    return  }  if {[botisop $dest]} {    putquick "KICK $dest $nick :Do not notice the channel!" -next    pushmode $dest +b *!*@[lindex [split $uhost @] 1]  }}</code></pre></div>Should do what you wanted.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Jan 26, 2005 4:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-01-26T04:01:14-04:00</updated>

		<published>2005-01-26T04:01:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45828#p45828</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45828#p45828"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45828#p45828"><![CDATA[
You have been told where to find scripts if you dont like those maybe you should learn TCL and write your own scripts.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Wed Jan 26, 2005 4:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-01-25T22:44:20-04:00</updated>

		<published>2005-01-25T22:44:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45824#p45824</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45824#p45824"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45824#p45824"><![CDATA[
Anyone :\<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Tue Jan 25, 2005 10:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-01-25T17:42:14-04:00</updated>

		<published>2005-01-25T17:42:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45821#p45821</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45821#p45821"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45821#p45821"><![CDATA[
They don't have modes like that on GameSurge.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Tue Jan 25, 2005 5:42 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[avilon]]></name></author>
		<updated>2005-01-25T14:29:45-04:00</updated>

		<published>2005-01-25T14:29:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45820#p45820</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45820#p45820"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45820#p45820"><![CDATA[
short hm?<div class="codebox"><p>Code: </p><pre><code>/mode #channel +N</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5191">avilon</a> — Tue Jan 25, 2005 2:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-01-25T10:01:34-04:00</updated>

		<published>2005-01-25T10:01:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45816#p45816</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45816#p45816"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45816#p45816"><![CDATA[
They are also longer scripts than that. I am looking for a short one.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Tue Jan 25, 2005 10:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-01-25T05:03:47-04:00</updated>

		<published>2005-01-25T05:03:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45812#p45812</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45812#p45812"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45812#p45812"><![CDATA[
There are channel administration scripts in our tcl archive that will do the job you require.<br><br><a href="http://www.egghelp.org/tcl.htm" class="postlink">Click Me!</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Tue Jan 25, 2005 5:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-01-24T23:09:50-04:00</updated>

		<published>2005-01-24T23:09:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45808#p45808</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45808#p45808"/>
		<title type="html"><![CDATA[notice script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45808#p45808"><![CDATA[
on *:NOTICE:*:#compLexity: { if ($nick !isop $chan) { mode $chan +b $wildsite | kick $chan $nick Do not notice the channel } }<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Mon Jan 24, 2005 11:09 pm</p><hr />
]]></content>
	</entry>
	</feed>
