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.

gseen module...

Discussion of Eggdrop's code and module programming in C.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

rosc2112 wrote:in your eggdrop.conf:

set nick-len 12

or whatever length your irc server supports.. gseen doesn't care about how long the length is, afaik.
Wrong!!!!!

Edit gseen.c and change the value of the following line from:

Code: Select all

static int seen_nick_len = 9;
.. to

Code: Select all

static int seen_nick_len = 32;
You then recompile the module. :)
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
rosc2112
Revered One
Posts: 1454
Joined: Sun Feb 19, 2006 8:36 pm
Location: Northeast Pennsylvania

Post by rosc2112 »

My bad :P

I don't remember editting that but apparently I did, cos I just checked my copy of the src and I have it set at 15. Should've been noted in the readme I spose.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

It is perfectly safe to change it to 32; all that means is that it will recognise any nick up to that character length. :)
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Post Reply