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

	<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-16T03:39:48-04:00</updated>

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

		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2007-10-16T03:39:48-04:00</updated>

		<published>2007-10-16T03:39:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76785#p76785</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76785#p76785"/>
		<title type="html"><![CDATA[nick must contain]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76785#p76785"><![CDATA[
Both will work, Am just fussie <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> with binds.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Tue Oct 16, 2007 3:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[iamdeath]]></name></author>
		<updated>2007-10-15T17:48:45-04:00</updated>

		<published>2007-10-15T17:48:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76775#p76775</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76775#p76775"/>
		<title type="html"><![CDATA[nick must contain]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76775#p76775"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind join - "* *sz*!*@*" join:chknick </code></pre></div>I think it should be:<br><div class="codebox"><p>Code: </p><pre><code>bind join - * join:chknick</code></pre></div>What do you say?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5982">iamdeath</a> — Mon Oct 15, 2007 5:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2007-10-15T15:50:00-04:00</updated>

		<published>2007-10-15T15:50:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76769#p76769</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76769#p76769"/>
		<title type="html"><![CDATA[nick must contain]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76769#p76769"><![CDATA[
Why would you use a trigger to kick the user if the bot can do that straight away..?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Mon Oct 15, 2007 3:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2007-10-15T01:44:33-04:00</updated>

		<published>2007-10-15T01:44:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76750#p76750</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76750#p76750"/>
		<title type="html"><![CDATA[nick must contain]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76750#p76750"><![CDATA[
Try: <div class="codebox"><p>Code: </p><pre><code>bind join - "* *sz*!*@*" join:chknickproc join:chknick {nick host handle channel} { if {[isbotnick $nick]} {return 0}  if {![string match "*sz*" $nick] &amp;&amp; [botonchan $channel] &amp;&amp; [botisop $channel]} {  putserv "PRIVMSG $channel :!k $nick users nick dose not contain 'sz'"   return 1 }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Mon Oct 15, 2007 1:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[modex]]></name></author>
		<updated>2007-10-14T15:44:46-04:00</updated>

		<published>2007-10-14T15:44:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76739#p76739</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76739#p76739"/>
		<title type="html"><![CDATA[nick must contain]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76739#p76739"><![CDATA[
i need some help, i tried modifying a script that.. on join if the users nick does not contain the word/text specified, it kicks the user.<br><div class="codebox"><p>Code: </p><pre><code>bind join - "*sz*!*@*" chknickproc chknick {nick uhost hand chan} {  if {$nick == "*sz*!} {      return 0    } else {       putmsg $chan "!k $nick users nick does not contain ''sz''"    }}</code></pre></div>basically thats my horrible attempt at writing the script. if anyone is willing to help me out i greatly appreciate it. <br><br>thanks in advance.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8537">modex</a> — Sun Oct 14, 2007 3:44 pm</p><hr />
]]></content>
	</entry>
	</feed>
