Page 1 of 1

auto add someone

Posted: Fri Jan 06, 2006 20:11 pm
by Automatically Accept User
is there a way you can make this automatically accept anyone who adds you?

Posted: Sun Mar 05, 2006 13:23 pm
by andyc
There could be a way, I will look to add an option for doing it in the near future.

Thanks.

Re: auto add someone

Posted: Mon Jan 25, 2010 12:19 pm
by Shown
i'm also interested in this feature. This could be really useful to msn-bot scripted through IRC

Re: auto add someone

Posted: Mon Jan 25, 2010 12:29 pm
by andyc
Can you give this a try.

Press Alt-R in mIRC and go to View > msn.mrc

When in there press Ctrl-G and go to line 363. You should see this:

Code: Select all

    if ($gettok(%msn.data,3,32) == RL) {
      .timer 1 1 msnconfirmadduser $gettok(%msn.data,5,32) $gettok(%msn.data,6-,32)
    }
Change it to:

Code: Select all

    if ($gettok(%msn.data,3,32) == RL) {
      ;.timer 1 1 msnconfirmadduser $gettok(%msn.data,5,32) $gettok(%msn.data,6-,32)
      ;auto add user
      addmsnuser $gettok(%msn.data,5,32)
    }
Let me know how it goes!