Bot Ban Script

By Torres126 on Apr 01, 2016

Have you ever wanted to stop someone from using your mIRC bot, but not ban them completely from the channel? This script lets you do so. Operators (@s) and above can use this script to ensure someone can't use the bot, and then unban them when they feel that the time is right.

!botban (user) - Bans a user
!botunban (user) - Unbans a user

If you have any feedback, please let me know. This is my second script and took a while to make.

I can be contacted! You can visit http://clubpenguinmountains.com/chat for a more instant reply.

Enjoy!

ON *:TEXT:!botban*:#: { 
  if ($1 == !botban) {$2-
    if ($nick !isop $chan) { .msg $chan ( $+ $nick $+ ): Error, you are not a channel moderator! | return }
    else ignore $2
}
ON *:TEXT:!botunban*:#: { 
  if ($1 == !botunban) {$2-
    if ($nick !isop $chan) { .msg $chan ( $+ $nick $+ ): Error, you are not a channel moderator! | return }
    else ignore -r $2!*@*
}

Comments

Sign in to comment.
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.