Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- alias -l channels { return #one,#two,#three } ; # = all the joined channels
- alias -l ban_with_kick { return 1 } ; 0 = only ban without kick
- alias -l ban_time { return 3600 } ; 3600 = 1 hour - 0 for permanent ban
- alias -l ban_type { return 2 } ; https://en.wikichip.org/wiki/mirc/identifiers/$mask for all the available bantypes
- alias -l ban_reason { return [Banned]: You are NOT allowed to send blank messages here! }
- ON $*:TEXT:/^[\x20\x0A\x0D\x09\xa0\x85\x202F]+$/Su:$($channels): { msg $chan ban - $+ $iif($ban_with_kick,k) $+ $iif($ban_time,$+(u,$v1)) $chan $nick $ban_type $ban_reason }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement