E.g. An unauthorized user enters a channel that is restricted and gets booted and banned from the channel. Chanserv bans, boots then announces it to the channel. I'm trying to pick up this announcement and remove the ban, because sometimes ops don't ident properly and then they have to wait for someone to unban them.
I tried bind pub, bind pubm, bind msgm etc.
I checked in the partyline with .bind and I can see the binds, but my proc never gets executed.
Code: Select all
bind MODE - "% +b" unban
proc unban {nick uhost hand chan mode} {
resetbans $chan
putserv "PRIVMSG $chan :Tsk tsk how dare they enter without permission"
}