Hi,
V: eggdrop.1.15
Command: .+chan
Params: #veryvery...verylongchan ( length - about 130 bytes(chars) )
result, the egg picks up the first 80 bytes as chan name.
How can I extend that length of chans?
( #define what, where ? )
Thanks!
Unfortunately it's not a simple #define. The chanset struct has the name hard coded as 81 bytes. You could try just increasing that to 200 or so... any code that uses sizeof() will work. After that, grep through the code for 80 and 81 and change the applicable ones.