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.

PLEASE HELP....My bot only can add owner if the nick 9 digit

General support and discussion of Eggdrop bots.
Post Reply
a
adiy
Voice
Posts: 4
Joined: Mon Nov 03, 2008 9:43 pm
Location: jakarta
Contact:

PLEASE HELP....My bot only can add owner if the nick 9 digit

Post by adiy »

(YoUR EggDROP NoT SuPPORTED MoRE THaN 8 DIgIT)
who can help me... my bot cannot add owner or friend if the nick more 9 digit... please help....
smart and funny
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

In sources of your bot open file src/eggdrop.h and find there a string

Code: Select all

#define HANDLEN 9   /* valid values 9->NICKMAX  */
Change it to

Code: Select all

#define HANDLEN 32   /* valid values 9->NICKMAX  */
and recompile your bot.
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
a
adiy
Voice
Posts: 4
Joined: Mon Nov 03, 2008 9:43 pm
Location: jakarta
Contact:

Post by adiy »

username wrote:In sources of your bot open file src/eggdrop.h and find there a string

Code: Select all

#define HANDLEN 9   /* valid values 9->NICKMAX  */
Change it to

Code: Select all

#define HANDLEN 32   /* valid values 9->NICKMAX  */
and recompile your bot.
ic bro... thanks a lot
smart and funny
User avatar
Fire-Fox
Master
Posts: 299
Joined: Sat Sep 23, 2006 9:01 pm
Location: /dev/null

Post by Fire-Fox »

I use eggdrop1.6.18

and have this in the conf file :)
# This setting allows you to specify the maximum nick-length supported by your
# network. The default setting is 9. The maximum supported length by Eggdrop
# is 32.
set nick-len 32
GreatZ
Fire-Fox | Denmark

Scripts: Relay | Store Text | TvMaze
User avatar
ultralord
Master
Posts: 255
Joined: Mon Nov 06, 2006 6:52 pm

Post by ultralord »

Fire-Fox wrote:I use eggdrop1.6.18

and have this in the conf file :)
# This setting allows you to specify the maximum nick-length supported by your
# network. The default setting is 9. The maximum supported length by Eggdrop
# is 32.
set nick-len 32
that works?????? :o if yes is very usefull :P
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

What you need to keep in mind here, is the fundamental difference between nicknames and handles. Irc uses nicknames to ID individual connections across the network. Eggdrop uses handles as user account names.

The key part is that you do not have to have the same handle as your irc-nickname.

Also worth mentioning, editing the HANDLEN macro and recompiling will render any old userfiles unusable, and you will only be able to share userfiles with eggdrops with the very same value for HANDLEN.
NML_375
Post Reply