This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

nick-len setting problem

Old posts that have not been replied to for several years.
Locked
D
DarkSpy

nick-len setting problem

Post by DarkSpy »

The IRC that my bot is connected to is PTnet and suports 15 nick lengh. But I can't add a user with 12 nick lengh (set nick-len 15). And if I change net-type to 3 that should work.. but it doesn't :(
D
Darmoth
Master
Posts: 210
Joined: Sun Oct 07, 2001 8:00 pm
Location: old europe

Post by Darmoth »

the eggdrop is compiled for 9 characters nicklength by default.
Edid the settings for nick and handlelength in the eggdrop.h file (in the eggdrop1.6.x directory). Compile the bot again and it should work.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Re: nick-len setting problem

Post by ppslim »

DarkSpy wrote:The IRC that my bot is connected to is PTnet and suports 15 nick lengh. But I can't add a user with 12 nick lengh (set nick-len 15). And if I change net-type to 3 that should work.. but it doesn't :(
There is no statment in any of of the documentation thats states, that changing the value of nick-ien will solve this issue.

This will only tell eggdrop that your network uses 15 character nicknames.

Handles are somthing seperate (allthough, linked), which are limited to 9 characters by default.

You can fix this by doing the following.

Downloading eggdrop
edit the file "src/eggdrop.h"
edit line "#define HANDLEN 9" to 15
save
configure and compile eggdrop.

Note: Doing this will make 2 major changes to eggdrop function. You will no longer able to connect to a botnet, unless the bot connecting is also set to a HANDLEN of 15. A lot of eggdrop partyline output is based on the HANDLEN setting to format the output, thus this will changed too.
Locked