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

	<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>2003-01-09T12:52:12-04:00</updated>

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

		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2003-01-09T12:52:12-04:00</updated>

		<published>2003-01-09T12:52:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=15083#p15083</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=15083#p15083"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=15083#p15083"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>set I 0</code></pre></div></div></blockquote>This should be:<br><div class="codebox"><p>Code: </p><pre><code>set i 0</code></pre></div>(or the other lines with <strong class="text-strong">set i 1</strong> should be <strong class="text-strong">set I 1</strong> and lines with <strong class="text-strong">$i</strong> would be <strong class="text-strong">$I</strong> , your choice..) .. Variable names in TCL are case sensitive.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Thu Jan 09, 2003 12:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-01-09T07:14:47-04:00</updated>

		<published>2003-01-09T07:14:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=15064#p15064</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=15064#p15064"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=15064#p15064"><![CDATA[
How do you mean studly?<br><br>If you mean, 1 UPPER, 1 lower, 1 UPPER, 1 lower, then the following match code should work.<br><br>The nickname other the person you are testing, should be contained in the $nick variable<br><div class="codebox"><p>Code: </p><pre><code>set U 0set Z 0set I 0foreach c [split $nick {}] {  if {![string match {[A-Za-z]}]} { continue }  if {!$i} { if {[string is upper $c]} { set U 1; set Z 1; continue }  set i 1  if {$U} {    if {[string is lower $c]} { continue }  } else {    if {![string is lower $c]} { continue }  }  set Z 0  break}</code></pre></div>This is far from perfect, and only 1 double single case will get around it (EG PpSlIm will be matched, while PpSliM will get around it).<br><br>After this code it done, if $Z is equal to 1, then they are using being matched as above, if set to 0, then they are home free.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Jan 09, 2003 7:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-01-08T23:34:21-04:00</updated>

		<published>2003-01-08T23:34:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=15046#p15046</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=15046#p15046"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=15046#p15046"><![CDATA[
I found a script called "badnick.tcl" which handles sub-strings in nicks, so I changed it a little to catch | \ / ^ ( ) [ ] { and } as well .. <br><br>I still need advice about catching StUdLy CaPs nicks tho .. how would you recognize that ?<p>Statistics: Posted by Guest — Wed Jan 08, 2003 11:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-01-08T09:41:17-04:00</updated>

		<published>2003-01-08T09:41:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=15009#p15009</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=15009#p15009"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=15009#p15009"><![CDATA[
lol .. ok, k-rad is an old d00d term, like "eXtreme" is now. I guess I've been on IRC too long.<br><br>Symbols are } and | and ^  used like this:<br><br> ^^^u1tr4|batm4n^^^<br><br>a person coming on channel with this nick would receive a 2 minute ban for use of studly caps or symbols in nick.<p>Statistics: Posted by Guest — Wed Jan 08, 2003 9:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-01-08T05:44:02-04:00</updated>

		<published>2003-01-08T05:44:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=14996#p14996</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=14996#p14996"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=14996#p14996"><![CDATA[
I havn't ever heard of one.<br><br>However, it shouldn't be hard to do.<br><br>However, again, to help more, we would need to know more information about k-rad sybols.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Jan 08, 2003 5:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-01-07T20:37:16-04:00</updated>

		<published>2003-01-07T20:37:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=14982#p14982</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=14982#p14982"/>
		<title type="html"><![CDATA[Recommend script/module for symbols and d00dly caps in nicks]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=14982#p14982"><![CDATA[
Hi,<br><br>Our present, custom-coded, bot auto-kicks for 2 minutes people coming in with k-rad symbols and d00dly caps peppered all over their nicks.<br><br>Can someone recommend a module or script for eggdrop which does or can be changed to do this please.<br><br>thanks.<p>Statistics: Posted by Guest — Tue Jan 07, 2003 8:37 pm</p><hr />
]]></content>
	</entry>
	</feed>
