This script is very nice. It is a !kick script. The way it works with this is that you can send a pm to the nickname that has the script. You must tell what channel you want it to kick, when you are setting up the script. For example if you on a channel called #
WyldRyde, You must tell it to kick in that channel. There is also another verison on this script that you can use in an op room. But you either must but all ops on +e =exception, so the service bot will not kick them.
on *:text:!kick*:#: {
if ($chan == #
WyldRyde) || ($chan == #
WyldRyde) {
if ($0 >= 2) {
kick #
WyldRyde $$2 $$3-
}
else { notice $nick No nickname specified. }
}
}
on *:text:!kick*:?: {
if ($0 >= 2) {
kick #
WyldRyde $$2 $$3-
}
else { notice $nick No nickname specified. }
}
The one above is a pm. All you gotta do is pm the nick with that script in it and type !kick nickname You are behaving. Ex: !kick Snakeyes11 yout attidue is not welcomed here. Then the bot/cilent will kick them.
This other one is the one that allows to kick someone in the op room.
on *:text:!kick*:#
WyldRyde-ops: {
if ($0 >= 2) {
kick #
WyldRyde $2 $3-
}
else { notice $nick Must specify a nick for !kick command. }
}
Enjoy!