Unban scipt for bot (!ub)
Platform: mIRC
Published Dec 10, 2011
Updated Dec 10, 2011
This is snippet for bot to delete a specific ban on chan via command. Use it as: "!ub ban-mask".
Ex: !ub *!*ident@*.com
; unban script by un1qu3
on @*:text:!ub *:#:{
if ($nick == ur nick) {
if ($2 isban #) {
mode # -b $2
}
}