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

	<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>2021-02-01T10:04:02-04:00</updated>

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

		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-02-01T10:04:02-04:00</updated>

		<published>2021-02-01T10:04:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109380#p109380</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109380#p109380"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109380#p109380"><![CDATA[
i assume your users connect throu your website  you could have some house rules set there but then again im not sure how your users connect.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Mon Feb 01, 2021 10:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Carlin0]]></name></author>
		<updated>2021-02-01T05:37:18-04:00</updated>

		<published>2021-02-01T05:37:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109378#p109378</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109378#p109378"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109378#p109378"><![CDATA[
however with your method people will find themselves banned without knowing why <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12778">Carlin0</a> — Mon Feb 01, 2021 5:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-01-31T20:10:47-04:00</updated>

		<published>2021-01-31T20:10:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109377#p109377</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109377#p109377"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109377#p109377"><![CDATA[
the issue is you will end up with a full banlist since having to set bans on a zillion paterns of nicks that are too long rather than just set 1 ban and get them all wich i mentioned few times <br><br>like this banmask  bans all nicks that are longer than 9 characters  and allow all that are 9 or less<br><blockquote class="uncited"><div>/mode #channel +b ?????????*!*@* </div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Sun Jan 31, 2021 8:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Carlin0]]></name></author>
		<updated>2021-01-31T18:59:43-04:00</updated>

		<published>2021-01-31T18:59:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109376#p109376</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109376#p109376"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109376#p109376"><![CDATA[
thanks, I just made it so that only the nick and not the whole mask were banned, so that changing nick could re-enter<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12778">Carlin0</a> — Sun Jan 31, 2021 6:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-01-31T10:57:38-04:00</updated>

		<published>2021-01-31T10:57:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109375#p109375</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109375#p109375"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109375#p109375"><![CDATA[
try this:<br><div class="codebox"><p>Code: </p><pre><code>set max_nick_len 10bind join - * nick_joinbind nick - * nick_changeproc nick_join {nick uhost hand chan} {  global botnick max_nick_len   if {![botisop $chan]} { return 0 }   if [isbotnick $nick] { return 0 }        if {[string length $nick] &gt; $max_nick_len} {        pushmode $chan +b [maskhost $uhost 2]        putkick $chan $nick "Your nickname is too long! use $max_nick_len characters or less" }}proc nick_change {nick uhost hand chan newnick} {    if {![botisop $chan]} { return 0 }    if [isbotnick $newnick] { return 0 }        nick_join $newnick $uhost $hand $chan}</code></pre></div>as i mentioned u can block excessive use of chars with 1 banmask<br><br>like:  <blockquote class="uncited"><div> +b ??????????*!*@* </div></blockquote>this saves u the trouble of having to kickban each long nick<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Sun Jan 31, 2021 10:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Carlin0]]></name></author>
		<updated>2021-01-31T04:48:43-04:00</updated>

		<published>2021-01-31T04:48:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109373#p109373</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109373#p109373"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109373#p109373"><![CDATA[
<blockquote class="uncited"><div>Try this: <a href="http://forum.egghelp.org/viewtopic.php?p=5384" class="postlink">http://forum.egghelp.org/viewtopic.php?p=5384</a><br></div></blockquote>this works, but it only kicks and you risk making the bot work too much, I would have preferred a ban .<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12778">Carlin0</a> — Sun Jan 31, 2021 4:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-01-31T00:49:59-04:00</updated>

		<published>2021-01-31T00:49:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109372#p109372</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109372#p109372"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109372#p109372"><![CDATA[
Try this: <a href="http://forum.egghelp.org/viewtopic.php?p=5384" class="postlink">http://forum.egghelp.org/viewtopic.php?p=5384</a><br><br>And of course you can ban too long nicks from joining channel all together like +b ?????????*!*@*<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Sun Jan 31, 2021 12:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Carlin0]]></name></author>
		<updated>2021-01-31T19:01:05-04:00</updated>

		<published>2021-01-30T19:30:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109369#p109369</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109369#p109369"/>
		<title type="html"><![CDATA[[Solved]   nick too long]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109369#p109369"><![CDATA[
is it possible to ban a nick that exceeds a certain number of characters (eg 10 or 11)?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12778">Carlin0</a> — Sat Jan 30, 2021 7:30 pm</p><hr />
]]></content>
	</entry>
	</feed>
