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.

in what file is the delay set?

Old posts that have not been replied to for several years.
Locked
a
axfreak

in what file is the delay set?

Post by axfreak »

Hey, before i compile i want to find the file where the delay for the eggdrop is set by default its on 2 i want to change this to 0 where is the source file?
d
dollar
Op
Posts: 178
Joined: Tue Oct 28, 2003 3:47 pm
Location: Netherlands

Post by dollar »

Huh? What delay?

[edit]I guess you're "problem" is solved then... :P (#eggdrop.support quakenet ;))[/edit]
dollar (or something similar) at:
#eggdrop / #tcl - undernet
#egghelp / #tcl / #eggtcl - efnet
#eggdrop.support / #tcl - quakenet
#eggdrop - ircnet
M
Muridae

Post by Muridae »

The delay you are referring to is a define in the server module. The default is 2 seconds. To change it:

1. Edit src/mod/server.mod/server.c
2. Change "#define msgrate 2" to whatever delay you want.
3. Recompile modules.

Clip from server.mod/server.c:

/* Number of seconds to wait between transmitting queued lines to the server
* lower this value at your own risk. ircd is known to start flood control
* at 512 bytes/2 seconds.
*/
#define msgrate 2
Locked