|
| Author |
Message |
Mojave Almost An Agent

Joined: 01 Nov 2003 Posts: 1434
 
|
Posted: Sat Jan 31, 2004 7:46 am Post subject: |
|
|
Added list changes we discussed. Added friendly name sent to Connected handler. Added support for not answering a RNG. Other odds and ends.
Removed the extra copy of $self sent to all call_events. Merged code from Handler::Event into MSN.pm - Handler::Event no longer needed.
EDIT : Attached newer version of MSN.pm v 1.3.7 |
|
| Back to top |
|
 |
eric256 The Keymaker

Joined: 03 May 2006 Posts: 2292 Location: Colorado
     
|
Posted: Sat Jan 31, 2004 3:56 pm Post subject: |
|
|
Awesome, I can't wait to try it out! _________________ Eric256
Proud previous owner and current admin of Bot-depot.com |
|
| Back to top |
|
 |
Keenie Almost An Agent

Joined: 31 Oct 2003 Posts: 1071
 
|
Posted: Sat Jan 31, 2004 10:06 pm Post subject: |
|
|
nice work, i don't want to post any small updates since i dont know if eric has started working on anything :S.. but in syn
| Code: | | foreach my $key (keys %$RL)<br /> {<br /> if (!defined $AL->{$key} && !defined $BL->{$key})<br /> {<br /> $self->writelog( "uh oh $key isnt taken care of we\'ll fix that\n\n" );<br /> $self->send('ADC', "AL N=$key") if $self->isVer('MSNP10');<br /> $self->send('ADD', "AL $key $key") if $self->isVer('MSNP9');<br /><br /> }<br /> } <br /> |
should now be
| Code: | | foreach my $key (keys %$RL)<br /> {<br /> if (!defined $AL->{$key} && !defined $BL->{$key})<br /> {<br /> $self->writelog( "uh oh $key isnt taken care of we\'ll fix that\n\n" );<br /> $self->_add_to_list('AL', '$key) }<br /> } |
edit: sorry it looks all screwed in alignment, IE opened msn.pm in my browser so i had to copy and paste it so its all screwy looking |
|
| Back to top |
|
 |
Keenie Almost An Agent

Joined: 31 Oct 2003 Posts: 1071
 
|
Posted: Wed Feb 04, 2004 4:30 am Post subject: |
|
|
hmm something strange i noticed (besides the unblock method is actually the block method)
whats the number thats being added after the list? ADD 17 BL ###?
I've been searching msn.pm and i dont see anything obvious that would be adding that extra number in the middle of the data sent |
|
| Back to top |
|
 |
eric256 The Keymaker

Joined: 03 May 2006 Posts: 2292 Location: Colorado
     
|
Posted: Wed Feb 04, 2004 3:15 pm Post subject: |
|
|
Thats on the recieve, we have never even checked the REM response from the server. _________________ Eric256
Proud previous owner and current admin of Bot-depot.com |
|
| Back to top |
|
 |
|