Code: Select all
# open src/mod/gseen.mod/gseen.c
# find (line 88)
static int seen_nick_len = 9;
# replace with
static int seen_nick_len = 32;
Code: Select all
static tcl_ints my_tcl_ints[] =
{
{"save-seens", &save_seens, 0},
{"expire-seens", &expire_seens, 0},
{"use-handles", &use_handles, 0},
{"tell-seens", &tell_seens, 0},
{"botnet-seens", &botnet_seen, 0},
{"max-matches", &max_matches, 0},
{"fuzzy-search", &fuzzy_search, 0},
{"wildcard-search", &wildcard_search, 0},
{"hide-secret-chans", &hide_secret_chans, 0},
{"seen-nick-len", &seen_nick_len, 0},
{0, 0, 0}
};
Not just you I had to do the same. The config nick length if I remember correctly is for the internal userlist nick lengths and the source nick length is to allow the bots nick to be upto 32 chars long. could be the other way round my memory is failing in my old ageGaladhrim wrote:I remember that I had to edit eggdrop.h to make sure that the nicklength got larger for my local dmz irc server, can't remember a setting in the config file tbh. Might just be me...
it's youGaladhrim wrote:I remember that I had to edit eggdrop.h to make sure that the nicklength got larger for my local dmz irc server, can't remember a setting in the config file tbh. Might just be me...
Code: Select all
* NICKMAX note:
* You should leave this at 32 characters and modify nick-len in the
* configuration file instead.
*/
#define HANDLEN 9 /* valid values 9->NICKMAX */
#define NICKMAX 32 /* valid values HANDLEN->32 */
Code: Select all
# 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 9
you must be hundred years old, those things were documented in eggdrop.conf in recent years^DooM^ wrote:Not just you I had to do the same. The config nick length if I remember correctly is for the internal userlist nick lengths and the source nick length is to allow the bots nick to be upto 32 chars long. could be the other way round my memory is failing in my old ageGaladhrim wrote:I remember that I had to edit eggdrop.h to make sure that the nicklength got larger for my local dmz irc server, can't remember a setting in the config file tbh. Might just be me...