mIRC Homepage
Posted By: westor Chan access list! - 15/05/09 12:59 PM
Hello again,

Is there any remote that with one tigger (!acc-list #chan) to see the #chan access list member's ?

thanks.
Posted By: 5618 Re: Chan access list! - 15/05/09 03:43 PM
Assuming the service is called ChanServ and it notices you with a common reply:
Code:
on @*:TEXT:!acc-list *:#:{
  if ($2 ischan) {
    set %acclist.on on
    set %acclist.chan $chan
    .msg ChanServ access $2 list
  }
}
on *:NOTICE:*:?:{
  if ($nick == ChanServ) && (%acclist.on) {
    msg %acclist.chan $1-
    if ($1-4 == End of access list.) { unset %acclist.* }
  }
}
Posted By: westor Re: Chan access list! - 17/05/09 11:51 AM
i got it , thanks!
© mIRC Discussion Forums