mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Nov 2004
Posts: 14
R
replay Offline OP
Pikka bird
OP Offline
Pikka bird
R
Joined: Nov 2004
Posts: 14
If i type !mode kick nickname, how does the bot kicks that person?

Last edited by replay; 04/12/04 08:21 AM.
Joined: Sep 2004
Posts: 200
I
Fjord artisan
Offline
Fjord artisan
I
Joined: Sep 2004
Posts: 200
alt + r
then type in:
on @*:text:*:#: {
if ($1-2 == !mode kick) {
if ($nick isop $chan) || ($nick ishop $chan) {
kick $2 $3-
}
}
}

Joined: Mar 2004
Posts: 359
L
Fjord artisan
Offline
Fjord artisan
L
Joined: Mar 2004
Posts: 359
Quote:
alt + r
then type in:
on @*:text:*:#: {
if ($1-2 == !mode kick) {
if ($nick isop $chan) || ($nick ishop $chan) {
kick $2 $3-
}
}
}


a better method would be without the :*: for matchtext as it could interfer with other on text events.


Link Copied to Clipboard