Hello, we are running Eggdrop 1.6.17 and IRCd Hybrid 6. We have two bots total. One bot picks up binds in the channel, then starts a query between the user that initiated the bind and the second bot. The second bot, who is now in a PRIVMSG with the user, responds to user input and outputs a text response. We seem to be having an issue with severe latency and, in some cases, data loss. Previously, we had postulated that the issue was rooted in the eggdrop.conf. However, after the change multiple settings had little to no effect, we turned to examining the server module. Is it possible that any of the settings in that file are causing the issue, or that they are conflicting with other settings in other files. This issue seems to arise if we either have 2 users continually requests responses from the bot (not flooding, but high volume) or more than 5 users with about 4-5 requests each. This occurs regardless of the length or complexity of the bot's response, but happens more quickly with more complex (15 line) responses. Please let us know if you have any suggestions, or if you require more information. All help is greatly appreciated.
Use putserv when you need some thing to happen instantaneously. Like a kick, or a ban.
Use puthelp when messaging people, or channels.
There are three commands with which you can send commands to the IRC server. These commands are [putserv], [puthelp] and [putquick]. All of these commands do exactly the same thing, but they use different queues. The [putquick] command uses the fastest queue and is used if you want something to be sent to the server immediantly. The [putserv] command uses the normal queue for server messages and is also the command to use when you are sending something to the server that doesn't need to be rushed. The [puthelp] command uses the slowest queues and is used to send things like messages and notices to other people, because that usually has a lower priority. The syntax a [putquick], [putserv] or [puthelp] command is [putserv <text> [options]]. The <text> is the command and parameters you want to send to the IRC server. If you want to send a message to someone or a channel, the syntax would be ["PRIVMSG <nickname/channel> :<message>"] or if you want to send a notice the syntax would be ["NOTICE <nickname/channel> :<message>"], where <nickname/channel> is the nickname or channel to which you want to send the message and <message> is the message that you want to send. For example [puthelp "PRIVMSG foo :Hi there."] would send the message "Hi there." to the nickname "foo". The [options] are the parameters for the command. At the moment there is only one parameter and that's -next. This will push your command to the front of the queue that the command uses and thereby sending it faster.
While I understand the logic of your post, I do not think that is the issue. Below is a sample of one of the bots I mentioned. As you can see it uses putquicks - we have also tried those other variations you suggested with no change. We believe the issue resides within some settings within the server module included with eggdrop pre-compile. As you can tell from the bot - it's simplistic, but by no means a beginners bot. We are about 98% sure its a setting we need to adjust pre-compile in the server module - we just need help figuring out what settings we need to adjust. =) By all means please provide more feedback and/or additional ideas
In the current version we have no "after 3000" Those delays were intentional and were removed before testing the current problem - it isn't them since they are no longer there, Thanks.