mIRC Home    About    Download    Register    News    Help

Print Thread
#144349 09/03/06 01:06 PM
P
Prof
Prof
P
Hi guys,

I got problem with $ibl
sometimes $ibl(#,0) returns 0 but when i type /channel it shows more than one ban list

what's the problem? is that a bug?

#144350 09/03/06 01:11 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
No. It just means mIRC hasn't updated the list yet. You can update it by doing /mode #channel b

You could add it to an on join script to make sure it's always updated:

Code:
on *:join:#:{
  if ($nick == $me) mode $chan b
}

#144351 09/03/06 01:14 PM
P
Prof
Prof
P
Yeah, that what I need

Thanks


Link Copied to Clipboard