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

	<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-11-18T17:37:28-04:00</updated>

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

		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2006-11-18T17:37:28-04:00</updated>

		<published>2006-11-18T17:37:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68200#p68200</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68200#p68200"/>
		<title type="html"><![CDATA[Reply: Re: [Patches] eggdrop1.6.18 +HANDLEN_31 &amp; +MODES]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68200#p68200"><![CDATA[
<blockquote class="uncited"><div>I'd bet most recent ircds' modes-per-line is way below 20, more precisely 6 (and no, Unreal and the like aren't most)</div></blockquote> Unreal is 12, the max of 20 was for people that use inspircd with has a max of 20+ (20 is the default) and a nickmax of 31 (31 is the default). Its unusual as i've found that most eggdrops are for network like undernet, ircnet ..ect that support the default for eggdrop. just wanted to make sure it would work with all.<blockquote class="uncited"><div>they seem pretty stable to me... you know, it's not like you have more than 1 line of (preprocessor) code in there</div></blockquote> Thanks  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Sat Nov 18, 2006 5:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2006-11-18T14:25:44-04:00</updated>

		<published>2006-11-18T14:25:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68193#p68193</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68193#p68193"/>
		<title type="html"><![CDATA[Re: [Patches] eggdrop1.6.18 +HANDLEN_31 &amp; +MODES_PER_LIN]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68193#p68193"><![CDATA[
<blockquote class="uncited"><div>I've made 2 patches to make it easyer for people that want eggdrop to handle nicknames that are bigger than 9 chars. And also a patch that changes the modes per line to a max of 20 as most recent IRCds can go up to 20.</div></blockquote>I'd bet most recent ircds' modes-per-line is way below 20, more precisely 6 (and no, Unreal and the like aren't most)<br><blockquote class="uncited"><div><strong class="text-strong">BTW am not to sure about this, but modifiying the source code is not supported and these patches are posted 'as is'.</strong> I haven't had any problems with them and it seems to work great for me, so i hope this makes things easyer for you.</div></blockquote>they seem pretty stable to me... you know, it's not like you have more than 1 line of (preprocessor) code in there <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=5056">demond</a> — Sat Nov 18, 2006 2:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TCL_no_TK]]></name></author>
		<updated>2006-11-18T13:25:04-04:00</updated>

		<published>2006-11-18T13:25:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=68190#p68190</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=68190#p68190"/>
		<title type="html"><![CDATA[[Patches] eggdrop1.6.18 +HANDLEN_31 &amp; +MODES_PER_LINE_MA]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=68190#p68190"><![CDATA[
I've made 2 patches to make it easyer for people that want eggdrop to handle nicknames that are bigger than 9 chars. And also a patch that changes the modes per line to a max of 20 as most recent IRCds can go up to 20.<br><br><strong class="text-strong">BTW am not to sure about this, but modifiying the source code is not supported and these patches are posted 'as is'.</strong> I haven't had any problems with them and it seems to work great for me, so i hope this makes things easyer for you.<br><br><strong class="text-strong">HANDLEN_31 patch</strong><div class="codebox"><p>Code: </p><pre><code>--- eggdrop1.6.18/src/eggdrop.h2006-03-28 03:35:50.000000000 +0100+++ eggdrop1.6.18+HANDLEN31/src/eggdrop.h2006-11-18 16:55:56.000000000 +0000@@ -60,7 +60,7 @@  *       You should leave this at 32 characters and modify nick-len in the  *       configuration file instead.  */-#define HANDLEN 9   /* valid values 9-&gt;NICKMAX  */+#define HANDLEN 31  /* valid values 9-&gt;NICKMAX  */ #define NICKMAX 32  /* valid values HANDLEN-&gt;32 */</code></pre></div><strong class="text-strong">MODES_PER_LINE_MAX_20 patch</strong><div class="codebox"><p>Code: </p><pre><code>--- eggdrop1.6.18/src/chan.h2006-03-28 03:35:49.000000000 +0100+++ eggdrop1.6.18+MODES_PER_LINE_MAX20/src/chan.h2006-11-18 17:07:40.000000000 +0000@@ -38,7 +38,7 @@ #undef NO_HALFOP_CHANMODES  /* Hard limit of modes per line. */-#define MODES_PER_LINE_MAX 6+#define MODES_PER_LINE_MAX 20  #define HALFOP_CANTDOMODE(_a) (!me_op(chan) &amp;&amp; (!me_halfop(chan) || (strchr(NOHALFOPS_MODES, _a) != NULL))) #define HALFOP_CANDOMODE(_a)  (me_op(chan) || (me_halfop(chan) &amp;&amp; (strchr(NOHALFOPS_MODES, _a) == NULL)))</code></pre></div>Thanks  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8130">TCL_no_TK</a> — Sat Nov 18, 2006 1:25 pm</p><hr />
]]></content>
	</entry>
	</feed>
