Closed GoogleCodeExporter closed 9 years ago
There are 2 ways to do this
sendRawLineNow
1.9: bot.sendRawLineNow("PRIVMSG #channel :Sent immediately");
2.0: bot.sendRaw().rawLineNow("PRIVMSG #channel :Sent immediately");
Completely disable message delay. Note that this is global for the bot and must
be done before connecting
1.9: bot.setMessageDelay(0);
2.0: configurationBuilder.setMessageDelay(0);
Original comment by Lord.Qua...@gmail.com
on 12 Jun 2013 at 3:47
Original issue reported on code.google.com by
guo9810
on 12 Jun 2013 at 1:16