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

	<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-04-12T04:59:53-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Dereckson]]></name></author>
		<updated>2003-04-12T04:59:53-04:00</updated>

		<published>2003-04-12T04:59:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18939#p18939</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18939#p18939"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18939#p18939"><![CDATA[
The parameter is to set in eggdrop.h<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1339">Dereckson</a> — Sat Apr 12, 2003 4:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-08T05:36:54-04:00</updated>

		<published>2003-04-08T05:36:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18706#p18706</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18706#p18706"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18706#p18706"><![CDATA[
This is not true. The version numbers convention works on a major minor basis. It depends which of these are odd or even that states the status of it.<br><br>At the end of the 1.4 series, major steps where taken.<br><br>A whole new version (1.5) and a development plan was formed.<br><br>According to tcl-commands.doc, the version numbering is as follows.<blockquote class="uncited"><div>numversion<br>    Value: the current numeric bot version (for example: "1010201").<br>      Numerical version is in the format of "MNNRRPP", where:<br>        M   major release number<br>        NN  minor release number<br>        RR  sub-release number<br>        PP  patch level for that sub-release</div></blockquote>The above, in the way we normaly see it is.<br>N.MM.RR+PP<br><br>However, the +PP isn't normaly there, and will only apply to the likes of the IPv6 patch, or inbetween versions.<br><br>Only when the "Minor release number" is ODD, is it a development release.<br><br>As such, 1.6 is even, and is considered stable. 1.5 and 1.7 are odd, so where/are beta/alpha quality.<br><br>All 1.6.x bots are considered stable, unless a specific message says so (IE, the issue with 1.6.11 cause major socks problems).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Tue Apr 08, 2003 5:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TimeLord]]></name></author>
		<updated>2003-04-08T05:20:38-04:00</updated>

		<published>2003-04-08T05:20:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18704#p18704</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18704#p18704"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18704#p18704"><![CDATA[
<blockquote class="uncited"><div>Re-compile your bot. It seems you are using modules from a previous version, where the HANDLEN is set to 9<br><br>src/mod/irc.mod/cmdsirc.c:1022<div class="codebox"><p>Code: </p><pre><code>if (strlen(hand) &gt; HANDLEN)    hand[HANDLEN] = 0;</code></pre></div>When using the adduser command, this will check if the handle required (after determining if you specified one, or it should use the nickname) is over HANDLEN in size.<br><br>If so, then it simply drops the rest of the data.<br><br>If you are only getting 9 chars allowed, then the check above is only using a HANDLEN of 9.<br><br>Make sue you run "make clean" before starting the compile process.</div></blockquote>Thanx for help. I`ve heard that even numbers of eggie r stable and odds r testin` version. So i`ve recompiled it again from 1.6.12 and now everythin` works fine. Thanx again mate.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2953">TimeLord</a> — Tue Apr 08, 2003 5:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-08T05:14:40-04:00</updated>

		<published>2003-04-08T05:14:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18703#p18703</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18703#p18703"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18703#p18703"><![CDATA[
Re-compile your bot. It seems you are using modules from a previous version, where the HANDLEN is set to 9<br><br>src/mod/irc.mod/cmdsirc.c:1022<div class="codebox"><p>Code: </p><pre><code>if (strlen(hand) &gt; HANDLEN)    hand[HANDLEN] = 0;</code></pre></div>When using the adduser command, this will check if the handle required (after determining if you specified one, or it should use the nickname) is over HANDLEN in size.<br><br>If so, then it simply drops the rest of the data.<br><br>If you are only getting 9 chars allowed, then the check above is only using a HANDLEN of 9.<br><br>Make sue you run "make clean" before starting the compile process.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Tue Apr 08, 2003 5:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TimeLord]]></name></author>
		<updated>2003-04-08T02:25:49-04:00</updated>

		<published>2003-04-08T02:25:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18698#p18698</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18698#p18698"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18698#p18698"><![CDATA[
<blockquote class="uncited"><div>Can we try and keep things to one thread, rather than cross-posting.<br><br>Have you changed the value of nicklen int he config file?</div></blockquote>yup. everythin` works fine, i can change bot`s nick up to 32 chars, .+user up to 32 chars, but .adduser still cuts handle to 9 chars.<br>eggie 1.6.13<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2953">TimeLord</a> — Tue Apr 08, 2003 2:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-07T11:36:15-04:00</updated>

		<published>2003-04-07T11:36:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18676#p18676</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18676#p18676"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18676#p18676"><![CDATA[
Can we try and keep things to one thread, rather than cross-posting.<br><br>Have you changed the value of nicklen int he config file?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Apr 07, 2003 11:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TimeLord]]></name></author>
		<updated>2003-04-07T09:51:33-04:00</updated>

		<published>2003-04-07T09:51:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18674#p18674</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18674#p18674"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18674#p18674"><![CDATA[
<blockquote class="uncited"><div>Please see the many threads on the forum. A search for the word "handlen" should bring up a fair few.</div></blockquote>I did what is need for increase handlen in eggdrop.h but i had one problem . It works only with +user command, not with adduser command, can u help me please ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2953">TimeLord</a> — Mon Apr 07, 2003 9:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-07T06:08:21-04:00</updated>

		<published>2003-04-07T06:08:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18666#p18666</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18666#p18666"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18666#p18666"><![CDATA[
Please see the many threads on the forum. A search for the word "handlen" should bring up a fair few.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Apr 07, 2003 6:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TimeLord]]></name></author>
		<updated>2003-04-07T05:57:03-04:00</updated>

		<published>2003-04-07T05:57:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18665#p18665</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18665#p18665"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18665#p18665"><![CDATA[
How to set handle lenght to more than default 9 please ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2953">TimeLord</a> — Mon Apr 07, 2003 5:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-03-31T14:28:55-04:00</updated>

		<published>2003-03-31T14:28:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18412#p18412</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18412#p18412"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18412#p18412"><![CDATA[
May well be because this is not a value character according to the RFC.<br><br>You can only used names, as defined in the IRC RFC 1459<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Mar 31, 2003 2:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dropman]]></name></author>
		<updated>2003-03-31T12:26:00-04:00</updated>

		<published>2003-03-31T12:26:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18405#p18405</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18405#p18405"/>
		<title type="html"><![CDATA[putty config]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18405#p18405"><![CDATA[
Maybe someone can tell me what to change in putty config that my eggdrop worked well with cyrillic encoding ?<br>There is some problem with char "Z" in cyryllic mode, this char do not appears on partyline and other commands, eggdrop just ignores this char ...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2891">dropman</a> — Mon Mar 31, 2003 12:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-03-31T11:02:54-04:00</updated>

		<published>2003-03-31T11:02:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18398#p18398</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18398#p18398"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18398#p18398"><![CDATA[
Check the putty config.<br><br>It may well be that keyboard handling can be adjusted there, and preventing errornouse characters being sent.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Mar 31, 2003 11:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dropman]]></name></author>
		<updated>2003-03-31T08:42:49-04:00</updated>

		<published>2003-03-31T08:42:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18389#p18389</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18389#p18389"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18389#p18389"><![CDATA[
I think there is some problem with translation/encoding. I need cyrilic encoding. When i am using dcc chat to create new user everything works and i can set hendle with 9 chars ... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2891">dropman</a> — Mon Mar 31, 2003 8:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2003-03-30T16:52:10-04:00</updated>

		<published>2003-03-30T16:52:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18371#p18371</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18371#p18371"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18371#p18371"><![CDATA[
putty should work fine - atleast it does for me.<br>try setting protocol to RAW (just an idea) and not telnet.<br><br>maybe astronom account already exists?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2369">spock</a> — Sun Mar 30, 2003 4:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dropman]]></name></author>
		<updated>2003-03-30T11:17:54-04:00</updated>

		<published>2003-03-30T11:17:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18351#p18351</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18351#p18351"/>
		<title type="html"><![CDATA[handle lengths]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18351#p18351"><![CDATA[
I used handle "astronom" but bot makes it into "astron". Maybe problem is in my telnet client (putty.exe), maybe there i need to set some options ...<br>Or maybe there are better telnet client than putty ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2891">dropman</a> — Sun Mar 30, 2003 11:17 am</p><hr />
]]></content>
	</entry>
	</feed>
