|
|
| Author |
Message |
EcKstasy Lurker

Joined: 23 May 2008 Posts: 178
|
Posted: Sep 07, 2008 10:27pm Post subject: IM-IRC bug (Constant rate warnings) |
|
|
Been trying to use IMIRC, but I've noticed it has some bugs, such as constant rate warnings when IM'ing a contact, example:
| Quote: | <Eck> AIMContactnick: Test.
<@IMServ> You're sending too fast! Slow down! We've been given a disconnect warning.
<@IMServ> Wait 0 seconds before sending anything. |
Then I started playing around with the source code. and found:
| Code: | sub oscar_rate_alert($$$$$) {
my($oscar, $level, $clear, $window, $worrisome) = @_;
my($screenname, $nick, $sndata) = callback_vars($oscar) or return;
return unless $worrisome;
irc_send(irc_privmsg($usnick, $nick, "You're sending too fast! Slow down! We've been given a $level warning.", "", "", $screenname));
$clear = int($clear / 1000);
irc_send(irc_privmsg($usnick, $nick, "Wait $clear seconds before sending anything.", "", "", $screenname));
} |
there is something wrong there, but i can't seem to figure it out. any ideas? |
|
| Back to top |
|
 |
EcKstasy Lurker

Joined: 23 May 2008 Posts: 178
|
Posted: Sep 07, 2008 11:30pm Post subject: |
|
|
nevermind, I've fixed it  |
|
| Back to top |
|
 |
darkwarrior Lurker

Joined: 02 Aug 2008 Posts: 194
|
Posted: Sep 08, 2008 7:00pm Post subject: |
|
|
| I've constantly looked for IMServ, where do you get it at? |
|
| Back to top |
|
 |
EcKstasy Lurker

Joined: 23 May 2008 Posts: 178
|
|
| Back to top |
|
 |
darkwarrior Lurker

Joined: 02 Aug 2008 Posts: 194
|
Posted: Sep 08, 2008 11:46pm Post subject: |
|
|
| Thanks! |
|
| Back to top |
|
 |
|
|
| |