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.

circumvent_queues

General support and discussion of Eggdrop bots.
Post Reply
S
Slaktarn
Halfop
Posts: 44
Joined: Wed May 02, 2007 1:48 am

circumvent_queues

Post by Slaktarn »

Hay everyone i found this on the egggrop wiki

Code: Select all

A very often asked question is how to make Eggdrop send as fast as possible. This is discouraged and will disconnect your bot if it doesn't have special privileges from the IRCd!

Load this script (paste to configfile or create a scriptfile):

 package require Eggdrop 1.6.20
 bind out - "% queued" circumvent_queues
 proc circumvent_queues {queue text status} {
   putnow $text; # send instantly
   return 1; # delete from old queue
 }
I try to insert that one in my eggdrop but i can´t get it to work, what i don´t get is what is queue and status

normaly i just do putnow

/ Slaktarn
S
Slaktarn
Halfop
Posts: 44
Joined: Wed May 02, 2007 1:48 am

Post by Slaktarn »

Maybe should make myself more clear, its not that its not running its just that it still take time before the massages are send

/ Slaktarn
Post Reply